fork download
  1. Array.prototype.foo = 1;
  2.  
  3. // somewhere deep in other javascript code...
  4. var a = [1,2,3,4,5];
  5. for (let x in a){
  6. console.log(x);
  7. }
Runtime error #stdin #stdout #stderr 0s 105856KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog.js:6:4 ReferenceError: console is not defined