Skip to content

Instantly share code, notes, and snippets.

@rodolphonetto
Last active October 19, 2020 01:14
Show Gist options
  • Save rodolphonetto/514632208811387cada6bf8fe3aeb226 to your computer and use it in GitHub Desktop.
Save rodolphonetto/514632208811387cada6bf8fe3aeb226 to your computer and use it in GitHub Desktop.
window
const cat = {
color: 'white',
printColor() { setTimeout(function(){
console.log('this', this);
}, 1000)
}
}
cat.printColor() // Window
const cat = {
color: 'white',
printColor() {
setTimeout(() => {
console.log('this', this)
}, 1000)
}
}
cat.printColor() // objeto cat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment