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++;
}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++;
}Last updated