Guest User

Untitled

a guest
Aug 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const add = (a) => (b) => (dispatch, getState) => a + b;
  2. export const add10 = add(10);
  3. export const add20 = add(20);
  4.  
  5. // result : 11
  6. console.log(add10(1));
  7.  
  8. // result : 21
  9. console.log(add20(1));
Add Comment
Please, Sign In to add comment