函数组合
Posted 风吹麦浪打
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数组合相关的知识,希望对你有一定的参考价值。
const add1 = (x) => x + 1 const mul3 = (x) => x * 3 const div2 = (x) => x / 2 //每个函数都要return 进行传参数的 div2(mul3(add1(add1(0)))) // => 3 const compose = (...fns) => { return x => fns.reduceRight((v, f) => f(v), x); }
//调用
compose (add1,mul3,div2)
以上是关于函数组合的主要内容,如果未能解决你的问题,请参考以下文章