Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Last active September 12, 2018 11:15
Show Gist options
  • Save manekinekko/358f55de59c677431762155daccc7ba4 to your computer and use it in GitHub Desktop.
Save manekinekko/358f55de59c677431762155daccc7ba4 to your computer and use it in GitHub Desktop.
function foo() {
console.log(this); //=> this === element
console.log(arguments); //=> 'a', 'b', 'c'
}
var element = document.querySelector('#foo');
element.addEventListener('click', (e) => {
console.log(this); //=> element
console.log(arguments); //=> e === Event
foo.call(element, 'a', 'b', 'c');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment