摘要: 1.函数的合成 合成两个函数const compose = function (f, g) { return function (x) { return f(g(x)); };} const compose=(arr)=>{ return function(x){ return arr.reduce 阅读全文
posted @ 2021-10-13 18:01 码农-编程小子 阅读(266) 评论(0) 推荐(0) 编辑