Skip to content

Instantly share code, notes, and snippets.

@matthieua
Forked from PavanKu/this_global.js
Last active November 15, 2018 15:55
Show Gist options
  • Save matthieua/db56dd203784f6801009c1088452d76d to your computer and use it in GitHub Desktop.
Save matthieua/db56dd203784f6801009c1088452d76d to your computer and use it in GitHub Desktop.
Global Execution context and value of this.
function go() {
console.log("Simple function call");
console.log(this === window);
}
go(); //prints true on console
console.log(this === window) //Prints true on console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment