以下语句会如何输出?

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

参考资料