Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WitkowskiMichau/ea94ad83e77fe7e5f92f40629252cee3 to your computer and use it in GitHub Desktop.
Save WitkowskiMichau/ea94ad83e77fe7e5f92f40629252cee3 to your computer and use it in GitHub Desktop.
Global context example 1
var a = 15;
console.log(this.a);
// => 15
console.log(window.a);
// => 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment