Guest User

Untitled

a guest
May 20th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // In IE9 (preview)
  2.  
  3. Object.defineProperty(Array.prototype, 'forEach', {
  4. value: function(){ /* forEach implementation */ },
  5. enumerable: false
  6. });
  7.  
  8. for (var p in []) {
  9. console.log(p); // "forEach" doesn't leak
  10. }
Add Comment
Please, Sign In to add comment