以下语句会如何输出?

for(let i=0,j=0;i<6,j<5,i++,j++){
  console.log(i,j);
}

参考资料