Skip to content

Commit 07c3c14

Browse files
authored
Create 2629-function-composition.js
1 parent c071774 commit 07c3c14

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* @param {Function[]} functions
3+
* @return {Function}
4+
*/
5+
var compose = function (functions) {
6+
return function (x) {
7+
let ans = x;
8+
for (fn of functions.reverse())
9+
ans = fn(ans);
10+
return ans;
11+
}
12+
};
13+
14+
/**
15+
* const fn = compose([x => x + 1, x => 2 * x])
16+
* fn(4) // 9
17+
*/

0 commit comments

Comments
 (0)