What will be the output of the code?
let count = 0;
setTimeout(() => {
console.log(count);
}, 0);
count++;
console.log(count);
What will be the output of the code?
let count = 0;
setTimeout(() => {
console.log(count);
}, 0);
count++;
console.log(count);