Created
October 19, 2020 00:59
-
-
Save rodolphonetto/aa67cb638fc57aec9b8211fa65ce976a to your computer and use it in GitHub Desktop.
function-method
This file contains hidden or 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
const cat = { | |
color: 'white', | |
printColor() { | |
console.log(this.color) | |
} | |
} | |
console.log(cat.printColor()) //white | |
const cat = { | |
color: 'white', | |
printColor: () => { | |
console.log(this.color); | |
} | |
} | |
console.log(cat.printColor()) //undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment