const compose = f => g => x => f(g(x));
const f = compose (x => x * 4) (x => x + 3);
f(2) // 20
求一个化简后的compose!!!!!!.......还有为什么f(2)等于8
梵蒂冈之花
相关分类