zoukankan      html  css  js  c++  java
  • 组合函数, compose&pipe

     
     

      const afn = function(a) {
        return a*2 
        
      }
      const bfn = function(b) {
        return b+3
      }
     
     
      const pipe = function(...fns) {
        return function(val) {
          return fns.reduce((total, fn) => {
            return fn(total)
          }, val)
        }
      }
     
      const compose = function(...fns) {
        return function(val) {
          return fns.reverse().reduce((total, fn) => {
            return fn(total)
          }, val)
        }
      }
      const myFn = pipe(bfn,afn)
      const myFnCompose = pipe(bfn,afn)
      console.log(myFn(2))// 10
      console.log(myFnCompose(2))//  7
     
    偶数
     
     
  • 相关阅读:
    Celery详解
    JWT详解
    进程及进程池
    多线程详解
    python常用模块之os模块的用法
    python常用模块之paramiko与ssh
    reflect 反射
    http 静态文件
    模板渲染语言
    http web 开发
  • 原文地址:https://www.cnblogs.com/soonK/p/14563595.html
Copyright © 2011-2022 走看看