What value is printed when executing the following code?
let c = 0;
while (c < 5) {
if (c === 3) {
break;
}
c++;
}
console.log(c);
What value is printed when executing the following code?
let c = 0;
while (c < 5) {
if (c === 3) {
break;
}
c++;
}
console.log(c);