Skip to content

Instantly share code, notes, and snippets.

@kavitshah8
Last active July 19, 2016 07:42
Show Gist options
  • Save kavitshah8/bdbeac24e26976269880 to your computer and use it in GitHub Desktop.
Save kavitshah8/bdbeac24e26976269880 to your computer and use it in GitHub Desktop.
Closures
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