碎片時(shí)間學(xué)編程「345]:執(zhí)行從右到左的函數(shù)組合

執(zhí)行從右到左的函數(shù)組合。 使用 Array.prototype.reduce() 方法執(zhí)行從右到左的函數(shù)組合。 最后一個(gè)(最右邊的)函數(shù)可以接受一個(gè)或多個(gè)參數(shù);其余函數(shù)必須是一元的。
JavaScript
const compose = (...fns) => ?fns.reduce((f, g) => (...args) => f(g(...args)));
示例:
const add5 = x => x + 5;const multiply = (x, y) => x * y;const multiplyAndAdd5 = compose( ?add5, ?multiply);multiplyAndAdd5(5, 2); // 15
更多內(nèi)容請(qǐng)?jiān)L問我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: