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