Loops: while and for
The “while” loop
while (condition) {
// code
// so-called "loop body"
}
let i = 0;
while (i < 3) { // shows 0, then 1, then 2
alert( i );
i++;
}
// single line omit {...}
let i = 3;
while (i) alert(i--);The “do…while” loop
The “for” loop
Breaking the loop
Continue to the next iteration
Labels for break/continue
Last updated