Skip to content

Instantly share code, notes, and snippets.

@orhanveli
Created September 23, 2020 13:52
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 orhanveli/4e0a259015863a96b4956e769b4468d4 to your computer and use it in GitHub Desktop.
Save orhanveli/4e0a259015863a96b4956e769b4468d4 to your computer and use it in GitHub Desktop.
Write a sum method which will work properly when invoked using either syntax below.
console.log(sum(2,3)); // Outputs 5
console.log(sum(2)(3)); // Outputs 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment