Skip to content

Instantly share code, notes, and snippets.

@Restuta
Created September 8, 2015 19:26
Show Gist options
  • Save Restuta/b34bfc6f162af9b3f7eb to your computer and use it in GitHub Desktop.
Save Restuta/b34bfc6f162af9b3f7eb to your computer and use it in GitHub Desktop.
Arrow functions and "this"
function Foo() {
setTimeout(
function() { console.log(this); },
200);
}
function Bar() {
setTimeout(
() => { console.log(this); },
200);
}
new Foo(); //prints window
new Bar(); //prints Bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment