Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Last active September 26, 2019 07:20
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/8973061951d9a371b76f972774434b60 to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/8973061951d9a371b76f972774434b60 to your computer and use it in GitHub Desktop.
function foo() {
console.log(this.a) //2
}
var obj = {
a: 2
}
foo.call(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment