0 / 60 seg.

What is the result of the following expression?

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