๐ฐhigher-order function
JS โฉ value โฉ function โฉ higher-order function
a function that takes other functions as arguments or as return value.
not(f) - logical negation.
pipe(f, g, ...) - function composition.
partial(f, a, b ...) - partial application of function
Last updated
Was this helpful?