자바스크립트 반복문 for

반복문 사용하지 않을 경우

/*var lotto = [];
lotto.push(parseInt(Math.random() * 45 + 1));
lotto.push(parseInt(Math.random() * 45 + 1));
lotto.push(parseInt(Math.random() * 45 + 1));
lotto.push(parseInt(Math.random() * 45 + 1));
lotto.push(parseInt(Math.random() * 45 + 1));
lotto.push(parseInt(Math.random() * 45 + 1));
document.write(lotto);

반복문 for문

for (시작;; 증가) {
    반복할문장
}

예시

for (var i = 0; i < 6; i++){ 
    document.write(i); 
}

반복문 for 사용

var lotto = [];
for (var i = 0; i < 6; i++) {
    lotto.push(parseInt(Math.random() * 45 + 1));
}
document.write(lotto);

좋은 웹페이지 즐겨찾기