/**
* renvoie une lettre minuscule aléatoire
*/
function getLowerCharacter() {
return getCharacter("lower");;
}
/**
* renvoie une lettre majuscule aléatoire
*/
function getUpperCharacter(){
return getCharacter("upper");;
}
/**
* renvoie une lettre
*/
function getCharacter(flag){
var caractère = "";
if(flag === "inférieur"){
character = String.fromCharCode(Math.floor( Math.random() * 26) "a".charCodeAt(0));
}
if(flag === "upper"){
character = String.fromCharCode(Math.floor( Math.random() * 26) "A".charCodeAt(0));
}
caractère de retour ;
}