Skip to content

Instantly share code, notes, and snippets.

@cyberglot
Created December 31, 2014 21:40
Show Gist options
  • Save cyberglot/4a9b52d70ac1de944d1d to your computer and use it in GitHub Desktop.
Save cyberglot/4a9b52d70ac1de944d1d to your computer and use it in GitHub Desktop.
FP in JavaScript - High Order Functions
var add = function(a){
return function(b){
return a + b
}
}
var add2 = add(2)
add2(3) // => 5
@rafaell-lycan
Copy link

I've learned this in the college. It`s currying right?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment