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