Advertisement
Guest User

Untitled

a guest
Mar 8th, 2015
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function testContext() {
  2.     console.log(this);
  3. }
  4.  
  5. function test() {
  6.     testContext();
  7. }
  8.  
  9. testContext();
  10. test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement