Skip to content

Instantly share code, notes, and snippets.

@JamieDixon
Last active September 16, 2020 15:42
Show Gist options
  • Save JamieDixon/51de02dbef17c3fb2f2d7847a5ef0855 to your computer and use it in GitHub Desktop.
Save JamieDixon/51de02dbef17c3fb2f2d7847a5ef0855 to your computer and use it in GitHub Desktop.
function sum(...args) {
function inner(...innerArgs) {
return sum(...args, ...innerArgs);
}
inner.valueOf = () => args.reduce((x, y) => x + y);
return inner;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment