Skip to content

Instantly share code, notes, and snippets.

@AbishekSuryaRS
Created September 1, 2020 12:27
const addition = (x,y) => x+y;
addition(8,9); // 17
// the above function takes multiple arguments
const currying = (x)=>(y)=>x*y;
currying(6)(9); // 54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment