Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Last active September 12, 2018 11:14
Show Gist options
  • Save manekinekko/08330480af083aa5689cd7c5c027d37c to your computer and use it in GitHub Desktop.
Save manekinekko/08330480af083aa5689cd7c5c027d37c to your computer and use it in GitHub Desktop.
function foo() {};
foo(); //=> this === window
var bar = function() {};
bar(); //=> this === window
// ou en notation ES6
var bar = () => {};
bar(); //=> this === window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment