Created
August 28, 2016 14:54
-
-
Save mahmoud-samy/00b87757b331542271995f39fa258a65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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