Skip to content

Instantly share code, notes, and snippets.

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