Skip to content

Instantly share code, notes, and snippets.

@6ui11em
Created February 22, 2018 21:33
Show Gist options
  • Save 6ui11em/cffb10b1782b00f0816b28fe764cbdf0 to your computer and use it in GitHub Desktop.
Save 6ui11em/cffb10b1782b00f0816b28fe764cbdf0 to your computer and use it in GitHub Desktop.
Arguments javascript vanilla #js #vanilla #javascript
var add = function () {
var total = 0;
for (var i = 0; i < arguments.length; i++) {
total += arguments[i];
}
return total;
};
// Returns 1
add(1);
// Returns 6
add(1, 2, 3);
// Returns 0
add();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment