加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
17-实现一个组合函数.html 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangcai 提交于 2023-04-04 16:49 . xx‘
<script>
function fn1(x) {
return x + 1;
}
function fn2(x) {
return x + 2;
}
function fn3(x) {
return x + 3;
}
function fn4(x) {
return x + 4;
}
console.log(fn4(fn3(fn2(fn1(1)))));
// 如何实现组合函数
function mlcompose(...fn) {
if (fn.length === 0) return num => num
if (fn.length === 1) return fn[0]
return fn.reduce((pre, next) => {
return (num) => {
return next(pre(num))
}
});
}
const a = mlcompose(fn1, fn2, fn3, fn4);
console.log(a);
console.log(a(1));
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化