142 B
142 B
importance: 3
Last loop value
What is the last value alerted by this code? Why?
let i = 3;
while (i) {
alert( i-- );
}
importance: 3
What is the last value alerted by this code? Why?
let i = 3;
while (i) {
alert( i-- );
}