fork(1) download
  1. // your code goes here
  2. let text="";
  3. let i=2;
  4. while(i < 8) {text += i + "<br>"; i++;}
  5. console.log(text);
Success #stdin #stdout 0.02s 16836KB
stdin
Standard input is empty
stdout
2<br>3<br>4<br>5<br>6<br>7<br>