Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created September 26, 2019 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AkashRajvanshi/6eb11a325111f5a212cdad8df680da18 to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/6eb11a325111f5a212cdad8df680da18 to your computer and use it in GitHub Desktop.
function foo () {
console.log(this.a) // 3
}
var a = 3 // because this reference the global object and here our var 'a' is global variable.
foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment