跳到主要内容

函数式

curry

// 实现 sum 函数支持类似效果
console.log(sum(2, 3)) // Outputs 5
console.log(sum(2)(3)) // Outputs 5

继承有哪几种方式?