if else if
var i = 10;
while (true) {
console.log(i);
i++;
if (i <= 14) {
console.log('kid')
} else if (i < 18) {
console.log('high school');
} else {
console.log('too big');
break;
}
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
var i = 10;
while (true) {
console.log(i);
i++;
if (i <= 14) {
console.log('kid')
} else if (i < 18) {
console.log('high school');
} else {
console.log('too big');
break;
}
}