var compose = function(f, g) { return function(x) { return f(g(x)); }; }; ... 意思是指,function 不必提及要操作的資料是什麼樣的。First Class Function、curry ...
確定! 回上一頁