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