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