Skip to content

Instantly share code, notes, and snippets.

@robpe
Last active December 19, 2015 00:59
Show Gist options
  • Save robpe/5872323 to your computer and use it in GitHub Desktop.
Save robpe/5872323 to your computer and use it in GitHub Desktop.
short recursive sum()
function sum(a) {
return (a[0] != undefined)+0 && a[0] + sum(a.slice(1, a.length))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment