0 / 60 seg.

What value is obtained when executing the following code?

let b = 1;
do {
    b++;
} while (b < 5);
console.log(b);