Skip to content

Instantly share code, notes, and snippets.

@calvimor
Created September 20, 2016 14:14
Show Gist options
  • Save calvimor/3a503e02817851e5de14861c0c349fa1 to your computer and use it in GitHub Desktop.
Save calvimor/3a503e02817851e5de14861c0c349fa1 to your computer and use it in GitHub Desktop.
function myFunc() {
var x = 0;
for (var i = 0; i < arguments.length; i++) {
x = x + arguments[i];
}
return x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment