Compose and pipe are utility functions used in functional programming to combine multiple functions.
-
Compose:
- Executes functions from right to left.
-
Pipe:
- Executes functions from left to right.
Example:
const add = x => x + 1;
const multiply = x => x * 2;
// Compose
const compose = (...fns) => x => fns.reduceRight((acc, fn) => fn(acc), x);
const composed = compose(multiply, add);
console.log(composed(5)); // 12
// Pipe
const pipe = (...fns) => x => fns.reduce((acc, fn) => fn(acc), x);
const piped = pipe(add, multiply);
console.log(piped(5)); // 12
Tags: advanced, JavaScript, Functional Programming