文件名称:js代码-function add(x) { return x + 10 } function multiply(x) { return x * 10 } function compose(f,g) { return function(x) { return f(g(x)); }; } // 这样我们我们可以通过如下的方式得到合成函数 // 执行动作的顺序是从右往左 let calculate=compose(multiply,
文件大小:957B
文件格式:ZIP
更新时间:2024-08-05 06:11:51
代码
js代码-function add(x) { return x + 10 } function multiply(x) { return x * 10 } function compose(f,g) { return function(x) { return f(g(x)); }; } // 这样我们我们可以通过如下的方式得到合成函数 // 执行动作的顺序是从右往左 let calculate=compose(multiply,add); console.log(calculate(2)) // 120
【文件预览】:
README.txt
main.js