Last active
September 12, 2020 08:59
-
-
Save obetame/5f91de17dfb31522a3c298a044b8be68 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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