Skip to content

Instantly share code, notes, and snippets.

@silent-lad
Last active March 15, 2019 17:57
Show Gist options
  • Save silent-lad/72045a2cab76d253fe901c6814b1971a to your computer and use it in GitHub Desktop.
Save silent-lad/72045a2cab76d253fe901c6814b1971a to your computer and use it in GitHub Desktop.
let confused = {
those: function() {
console.log(this === window);
},
these: ()=> {
console.log(this === window);
}
}
confused.those(); //False
confused.these(); //True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment