/**
* 임의의 소문자를 반환합니다.
*/
function getLowerCharacter() {
return getCharacter("lower");;
}
/**
* 임의의 대문자를 반환합니다.
*/
function getUpperCharacter(){
return getCharacter("upper");;
}
/**
* 편지를 반환합니다
*/
function getCharacter(flag){
var 문자 = "";
if(flag === "lower"){
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));
}
반환 문자;
}