fork(1) download
  1. var a = [];
  2. a[0] = 100;
  3. a[5] = 200;
  4. a[3] = 300;
  5. a.forEach(function(x) {java.lang.System.out.println('' + x);});
Success #stdin #stdout 0.31s 213120KB
stdin
Standard input is empty
stdout
100
undefined
undefined
300
undefined
200