Skip to content

Instantly share code, notes, and snippets.

@alonat
Last active February 28, 2020 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alonat/384f2ae2f54e47d0c1a9e6bc5f1726c3 to your computer and use it in GitHub Desktop.
Save alonat/384f2ae2f54e47d0c1a9e6bc5f1726c3 to your computer and use it in GitHub Desktop.
const sum = (a) => (b) => {
return b !== undefined ? sum(a + b) : a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment