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