Skip to content

Instantly share code, notes, and snippets.

@tjunghans
Created September 1, 2015 06:15
Show Gist options
  • Save tjunghans/ded00c143a1c6d0c22c7 to your computer and use it in GitHub Desktop.
Save tjunghans/ded00c143a1c6d0c22c7 to your computer and use it in GitHub Desktop.
// add n amount of arguments together
function add() {
var sum = 0;
var i;
var len = arguments.length;
for (i = 0; i < len; i++) {
sum += Number(arguments[i]);
}
return sum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment