What value is obtained when executing the following code?
let count = 0;
while (count < 3) {
count++;
}
console.log(count);
What value is obtained when executing the following code?
let count = 0;
while (count < 3) {
count++;
}
console.log(count);