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.03s 16632KB
stdin
Standard input is empty
stdout
 I am :1 I am :2 I am :3 I am :4