Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Last active September 26, 2019 07:17
Show Gist options
  • Select an option

  • Save AkashRajvanshi/d7a72eaf9ed501ce4131daa3aa6a08ca to your computer and use it in GitHub Desktop.

Select an option

Save AkashRajvanshi/d7a72eaf9ed501ce4131daa3aa6a08ca to your computer and use it in GitHub Desktop.
const Person = {
name() {
const firstName = _ => console.log('Akash', this) //Akash {name: f}
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