You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function curry (func) {
// 此处补全
}
function sum(a, b, c){
return a + b + c
}
let currySum = curry(sum)
console.log(currySum(1,2,3)) // 6 still callable normally
console.log(currySum(1)(2,3)) // 6 currying of 1st arg
console.log(currySum(1)(2)(3)) // 6 full currying
The text was updated successfully, but these errors were encountered:
题目描述
The text was updated successfully, but these errors were encountered: