Skip to content

Instantly share code, notes, and snippets.

@shallaa
Created September 20, 2017 07:51
Show Gist options
  • Save shallaa/bdf9f8dbfae30e97116a25e472d438c4 to your computer and use it in GitHub Desktop.
Save shallaa/bdf9f8dbfae30e97116a25e472d438c4 to your computer and use it in GitHub Desktop.
var a = function(a) { console.log(this.a); return a; };
console.log(a.apply.call(a, { a: 'b' }, ['c']));
console.log(a.call.apply(a, [{ a: 'd' }, 'e']));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment