Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created September 26, 2019 06:48
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/4bceddd80164b5cd4a1d1451d862b9cd to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/4bceddd80164b5cd4a1d1451d862b9cd to your computer and use it in GitHub Desktop.
function foo() {
console.log(this.a) // 2
}
const obj = {
a: 2,
foo // Es6 syntax of foo: foo
}
obj.foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment