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