0 / 60 seg.

What value is obtained when executing the following code?

let count = 0;
while (count < 3) {
    count++;
}
console.log(count);