Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Last active September 12, 2018 11:14
Show Gist options
  • Save manekinekko/f35bf0658a3b56ee7b837a0c115ee4e4 to your computer and use it in GitHub Desktop.
Save manekinekko/f35bf0658a3b56ee7b837a0c115ee4e4 to your computer and use it in GitHub Desktop.
function foo() {
return this;
}
// invocation en tant que fonction
foo(); //=> this === window
var bar = {
'foo': foo
};
// invocation en tant que méthode de 'bar'
bar.foo(); //=> this === bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment