var compose = function(f, g) { return function(x) { return f(g(x)); }; }; ... 因此,這也讓我們可以撰寫一個參數數量可變的compose,用法如下:
確定! 回上一頁