Skip to content

Instantly share code, notes, and snippets.

@gsans
Created November 28, 2014 10:30
Show Gist options
  • Save gsans/948fa993eec810616ba4 to your computer and use it in GitHub Desktop.
Save gsans/948fa993eec810616ba4 to your computer and use it in GitHub Desktop.
function Fn(a, b) { return a + b + this; };
// implicit this = 1
console.log(Fn.call(1, 2, 3)); //6
console.log(Fn.apply(1, [2, 3])); //6
//note: if null is passed this = window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment