Skip to content

Instantly share code, notes, and snippets.

@prakashsellathurai
Created June 8, 2018 17:27
Show Gist options
  • Save prakashsellathurai/96de708c5ce7dcdcde79ff4c476ab144 to your computer and use it in GitHub Desktop.
Save prakashsellathurai/96de708c5ce7dcdcde79ff4c476ab144 to your computer and use it in GitHub Desktop.
function sumTheNaturalNumbers(...theArgs) {
return theArgs.reduce((previous, current) => {
return previous + current;
});
}
console.log(sumTheNaturalNumbers(1, 2, 3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment