<前の記事へ || 次の記事へ>

[Javascript] 繰り返し ~ While ~

while ( 条件 ) {
// 繰り返し行われる処理
}

→while(100 > cnt++){
document.write(cnt,"<br>");
}
→1~100まで繰り返し表示する


do {
// 繰り返し行われる処理
} while ( 条件 );