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