一個有味道的函數

最近想到了一個自認爲很有意思的面試題 如何實現一個compose函數。 函數接收數個參數,參數均爲Function類型,右側函數的執行結果將作爲左側函數執行的參數來調用。 1 compose(arg => `${arg}%`, arg => arg.toFixed(2), arg => arg + 10)(5) // 15.00% 2 compose(arg => arg.toFixed(2),
相關文章
相關標籤/搜索