Rename js snippets

This commit is contained in:
Angelos Chalaris
2023-05-19 20:23:47 +03:00
parent 82a614e42e
commit 9d032ce05e
305 changed files with 70 additions and 70 deletions

View File

@ -0,0 +1,28 @@
---
title: Compose functions
type: snippet
language: javascript
tags: [function]
cover: digital-nomad-16
dateModified: 2020-10-22T20:23:47+03:00
---
Performs right-to-left function composition.
- Use `Array.prototype.reduce()` to perform right-to-left function composition.
- The last (rightmost) function can accept one or more arguments; the remaining functions must be unary.
```js
const compose = (...fns) =>
fns.reduce((f, g) => (...args) => f(g(...args)));
```
```js
const add5 = x => x + 5;
const multiply = (x, y) => x * y;
const multiplyAndAdd5 = compose(
add5,
multiply
);
multiplyAndAdd5(5, 2); // 15
```