Skip to content

Instantly share code, notes, and snippets.

@zbigniewTomczak
Created February 19, 2013 13:52
Show Gist options
  • Save zbigniewTomczak/4986078 to your computer and use it in GitHub Desktop.
Save zbigniewTomczak/4986078 to your computer and use it in GitHub Desktop.
var add = function (a, b) {
return a+b;
}
var arr = [3,7];
var sum = add.apply(null, arr);
console.log(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment