0 / 60 seg.

What will be the output of the code?

let count = 0;
setTimeout(() => {
  console.log(count);
}, 0);
count++;
console.log(count);