Last updated 2 years ago
Was this helpful?
JS โฉ value โฉ function โฉ higher-order function
a function that takes other functions as arguments or as return value.
decorator
not(f) - logical negation.
pipe(f, g, ...) - function composition.
partial(f, a, b ...) - partial application of function
Eloquent JavaScript โฉ higher-order functions
JavaScript: The Definitive Guide โฉ 8.8.2 Higher-Order Functions