Skip to content

Instantly share code, notes, and snippets.

@Billmike
Last active December 20, 2018 23:57
Show Gist options
  • Save Billmike/2823a8d304eb95c5f4828f07e33e01c8 to your computer and use it in GitHub Desktop.
Save Billmike/2823a8d304eb95c5f4828f07e33e01c8 to your computer and use it in GitHub Desktop.
const addAllNumers = (…args) => {
let result = 0;
for (let i = 0; i < args.length; i += 1) {
result += args[i];
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment