0 / 60 seg.

What is the result of the following code?

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