Last active
July 19, 2016 07:42
-
-
Save kavitshah8/bdbeac24e26976269880 to your computer and use it in GitHub Desktop.
Closures
This file contains 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
function sum(a, b) { | |
function innerSum(b) { | |
alert(a + b); | |
} | |
return b ? innerSum(b) : innerSum; | |
} | |
console.log(sum(2)(3)); // 5 | |
console.log(sum(2,3)); // 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment