fork download
  1. var c=0;
  2. for (var i=0; i<10; i++) {
  3. c += i;
  4. }
  5. console.log(c);
Success #stdin #stdout 0.13s 26448KB
stdin
Standard input is empty
stdout
45