Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. "use strict";
  2. (new function test(a) { console.log(a); })(window);
  3.  
  4. "use strict";
  5.  
  6. function test(a) {
  7. console.log(a);
  8. }
  9.  
  10. val t = new test(undefined);
  11.  
  12. t(window);
  13.  
  14. "use strict";
  15. (function test(a) { console.log(a); })(window);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement