fork download
  1. for (let iㅤ = 0; iㅤ < 2; ++iㅤ) {
  2. for (let i = 10; i < 12; ++i) {
  3. console.log(iㅤ, i);
  4. }
  5. }
Success #stdin #stdout 0.02s 17004KB
stdin
Standard input is empty
stdout
0 10
0 11
1 10
1 11