Last active
October 19, 2020 01:14
-
-
Save rodolphonetto/514632208811387cada6bf8fe3aeb226 to your computer and use it in GitHub Desktop.
window
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() { 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