Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 208 Bytes

File metadata and controls

13 lines (8 loc) · 208 Bytes

Curry Example

Here the video: https://youtu.be/ejj8vUjOVog

const curry2 = fn => a => b => fn(a,b)

const lt = curry2((a,b) => a<b)

const is_greater_than_3 = lt(3)

is_greater_than_3(4) // true