fork download
  1. function MyThing() {}
  2.  
  3. var foo = new MyThing();
  4. foo[42] = "hello world";
  5.  
  6. for (var key in foo) {
  7. print(key + 1);
  8. }
Success #stdin #stdout 0.02s 4984KB
stdin
Standard input is empty
stdout
421