Skip to content

Instantly share code, notes, and snippets.

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