Skip to content

Instantly share code, notes, and snippets.

@kaaes
Created May 19, 2011 15:14
Show Gist options
  • Save kaaes/980990 to your computer and use it in GitHub Desktop.
Save kaaes/980990 to your computer and use it in GitHub Desktop.
apply and call example
el.onclick = function(evt) {
addStyle.call(this, '#f00', 'solid 2px blue');
}
// both will have identical effect
el.onclick = function(evt) {
addStyle.apply(this, ['#f00', 'solid 2px blue']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment