fork download
  1. // your code goes here
  2. i=0
  3. do{
  4. console.log (i);
  5. i++;
  6. } while(i < 3) {
  7. console.log ("123");
  8. }
Success #stdin #stdout 0.03s 17220KB
stdin
Standard input is empty
stdout
0
1
2
123