While
while(condition){
// do it as long as condition is true
}var i = 0, x = "";
while (i < 5) {
x = x + "The number is " + i;
i++;
}do {
// code block to be executed
} while (condition);Last updated
while(condition){
// do it as long as condition is true
}var i = 0, x = "";
while (i < 5) {
x = x + "The number is " + i;
i++;
}do {
// code block to be executed
} while (condition);Last updated