0 / 60 seg.

What is the output of the following code?

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