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