js函数组合
2021/8/5 23:09:44
本文主要是介绍js函数组合,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- 纯函数和柯里化容易引起洋葱代码
- 函数组合可以让我们把细粒度的函数重新组合生成一个新的函数
- 函数组合并没有减少洋葱代码,只是封装了洋葱代码
- 函数组合执行顺序从右到左
- 满足结合律既可以把g和h组合 还可以把f和g组合,结果都是一样的
const _ = require("lodash"); const reverse = arr => arr.reverse() const first = arr => arr[0] const toUpper = s => s.toUpperCase() const lastToupper = _.flowRight(toUpper, first, reverse) console.log(lastToupper(['one', 'two', 'three'])) // 模拟 lodash 中的 flowRight function compose (...args) { return function (value) { return args.reverse().reduce(function (acc, fn) { console.log(fn) return fn(acc) }, value) } } const composeEs6 = (...args) => value => args.reverse().reduce((acc, fn) => fn(acc), value) const f = composeEs6(toUpper, first, reverse) console.log(f(['one', 'two', 'three'])) //结合律
原文地址: https://kspf.xyz/archives/71
这篇关于js函数组合的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程