0 / 60 seg.

What value is printed when executing the following code?

let c = 0;
while (c < 5) {
    if (c === 3) {
    break;
    }
    c++;
}
console.log(c);