What is the result of the following code?
for (let n = 100; n > 50; --n) {
if (n == 95) {
break;
}
console.log(n);
}What is the result of the following code?
for (let n = 100; n > 50; --n) {
if (n == 95) {
break;
}
console.log(n);
}Create a free account to access the full topic