Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active August 6, 2019 19:02
Show Gist options
  • Save ionelh/0bfc709a8d7e3be0d27ac00516fe09eb to your computer and use it in GitHub Desktop.
Save ionelh/0bfc709a8d7e3be0d27ac00516fe09eb to your computer and use it in GitHub Desktop.
Gist for medium article "How JavaScript Works"
foo; // 'bar'
window.foo; // 'bar'
this.foo; // 'bar'
(window.foo === foo && this.foo === foo && window.foo === this.foo) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment