Skip to content

Instantly share code, notes, and snippets.

@rodolphonetto
Created October 19, 2020 00:59
Show Gist options
  • Save rodolphonetto/aa67cb638fc57aec9b8211fa65ce976a to your computer and use it in GitHub Desktop.
Save rodolphonetto/aa67cb638fc57aec9b8211fa65ce976a to your computer and use it in GitHub Desktop.
function-method
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