728x90
무작위 문자 배열 생성기 (while)
: While을 이용해 5글자 랜덤문자배열 생성하기
var i = 0;
var x = [];
var 알파벳 = "abcdefghijklmnopqrstuvwxyz";
while (i <= 5) {
console.log(x);
x.push(알파벳[Math.floor(Math.random()*알파벳.length)]);
i++;
}
console.log("End");
728x90
'Study Note > Javascript' 카테고리의 다른 글
JS note#8_무작위 문자 배열 생성기 (do...while) (0) | 2018.01.15 |
---|---|
JS note#7_무작위 문자 배열 생성기 (for) (0) | 2018.01.15 |
JS note#6_ join (0) | 2017.12.13 |
JS note#5_ 랜덤이름짓기 2 (1) | 2017.12.13 |
JS note#4_ 랜덤이름짓기 1 (0) | 2017.12.05 |
댓글