Skip to content

Instantly share code, notes, and snippets.

@rupeshtiwari
Created June 21, 2017 20:28
Show Gist options
  • Save rupeshtiwari/6b9a9ba46d2e44af406f9e249c650fb2 to your computer and use it in GitHub Desktop.
Save rupeshtiwari/6b9a9ba46d2e44af406f9e249c650fb2 to your computer and use it in GitHub Desktop.
const f = a => b => c => a+b+c;
const result = f(1)(2)(3);
console.log(result);
//---------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment