Skip to content

Instantly share code, notes, and snippets.

@hadnazzar
Last active January 15, 2019 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hadnazzar/516c5c363f5bc9d41b26132a9c5a0f38 to your computer and use it in GitHub Desktop.
Save hadnazzar/516c5c363f5bc9d41b26132a9c5a0f38 to your computer and use it in GitHub Desktop.
function add(x) {
return function(y){
return x + y
}
}
add(5)(3) // 8
add(2)(5) // 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment