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 functionsarrow-up-right
JavaScript: The Definitive Guide โฉ 8.8.2 Higher-Order Functions
Last updated 3 years ago