0 / 60 seg.

What is the output of the following code?

var i = 0;
while (i < 5) {
  console.log(i);
  i++;
}