Guest User

Untitled

a guest
Nov 15th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function go() {
  2. console.log("Simple function call");
  3. console.log(this === window);
  4. }
  5.  
  6. go(); //prints true on console
  7. console.log(this === window) //Prints true on console.
Add Comment
Please, Sign In to add comment