Skip to content

Instantly share code, notes, and snippets.

@Arieg419
Created November 29, 2017 07:46
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 Arieg419/8259f739839454e48ee56a530f1b628a to your computer and use it in GitHub Desktop.
Save Arieg419/8259f739839454e48ee56a530f1b628a to your computer and use it in GitHub Desktop.
const addWrapper = () => (x,y) => x + y;
const add = addWrapper();
const sum1 = add (1,2); // 3
// Or we could do it like this
const sum2 = addWrapper()(4,4); // 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment