Skip to content

Instantly share code, notes, and snippets.

@sifue
Created February 14, 2012 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sifue/1826900 to your computer and use it in GitHub Desktop.
Save sifue/1826900 to your computer and use it in GitHub Desktop.
JavaScriptでapplyを使ってメソッド呼び出しする ref: http://qiita.com/items/2489
var add = function (a, b) {
return a + b;
};
var array = [3, 4];
// first argument is "this"、second is parameters.
var sum = add.apply(null, array); //sum is 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment