Skip to content

Instantly share code, notes, and snippets.

@ronit-mukherjee
Last active December 9, 2018 03:18
Show Gist options
  • Save ronit-mukherjee/63aef245484b7be6dbfb045e9ed5ff00 to your computer and use it in GitHub Desktop.
Save ronit-mukherjee/63aef245484b7be6dbfb045e9ed5ff00 to your computer and use it in GitHub Desktop.
//JS Fiddle Link:- https://jsfiddle.net/mukherjeeronit/mnhzkj27/
function multiply(a){
return function(b){
return function(c){
return a*b*c;
}
}
}
console.log(multiply(3)(2)(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment