본문 바로가기
Study Note/Javascript

JS note#6_무작위 문자 배열 생성기 (while)

by 시뮝 2018. 1. 15.
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

댓글