Skip to content

Instantly share code, notes, and snippets.

@PavanKu
Created December 26, 2017 05:29
Show Gist options
  • Save PavanKu/accabe6e142a4db2cee33cf8f07b553b to your computer and use it in GitHub Desktop.
Save PavanKu/accabe6e142a4db2cee33cf8f07b553b to your computer and use it in GitHub Desktop.
Global Execution context and value of this.
function foo () {
console.log("Simple function call");
console.log(this === window);
}
foo(); //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