Skip to content

Instantly share code, notes, and snippets.

@obetame
Last active September 12, 2020 08:59
Show Gist options
  • Save obetame/5f91de17dfb31522a3c298a044b8be68 to your computer and use it in GitHub Desktop.
Save obetame/5f91de17dfb31522a3c298a044b8be68 to your computer and use it in GitHub Desktop.
var age = 2;
const person = {
age: 1,
doSomething() {
console.log(this === person); // output: true
console.log(this.age); // output: 1
},
};
person.doSomething();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment