Skip to content

Instantly share code, notes, and snippets.

@kinsteronline
Created October 10, 2014 15:29
Show Gist options
  • Save kinsteronline/d3787102c94bc5dbbece to your computer and use it in GitHub Desktop.
Save kinsteronline/d3787102c94bc5dbbece to your computer and use it in GitHub Desktop.
Sum it up more modern style?
export function sum(...a) {
function loop(arr, total = 0) {
if (arr.length === 0) return total;
else return loop(arr.slice(1), total + arr[0]);
}
return loop(a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment