Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created September 26, 2019 06:40
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/4c32d09d86d35b0a58b98dcbcfcfa607 to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/4c32d09d86d35b0a58b98dcbcfcfa607 to your computer and use it in GitHub Desktop.
const Person = {
name () {
const firstName = function () {
console.log('Akash', this)
} // window
firstName()
console.log('Rajvanshi', this) // Rajvanshi {name: f}
}
}
Person.name()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment