Skip to content

Instantly share code, notes, and snippets.

@Yago
Last active November 28, 2018 13:27
Show Gist options
  • Save Yago/6c8f0c8eb3df3f6acca8b939ca080c87 to your computer and use it in GitHub Desktop.
Save Yago/6c8f0c8eb3df3f6acca8b939ca080c87 to your computer and use it in GitHub Desktop.
const sum = function () {
return [...arguments].reduce(function (acc, n) {
if (typeof n === 'number') return acc + n;
return acc;
}, 0);
}
sum(31,7,4); // return 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment