Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function readInput() {
  2.     testContext();
  3.  
  4.     testFuncScope();
  5.  
  6.     var funcObj = new Function("", "testContext()");
  7.     funcObj();
  8. }
  9.  
  10. function testContext() {
  11.     jsConsole.writeLine(this);
  12.     console.log(this);
  13. }
  14.  
  15. function testFuncScope() {
  16.     testContext();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement