function sum(...args) { let total = args.reduce((t, v) => t + v, 0); const next = (...args) => { total += args.reduce((t, v) => t + v, 0); return next; } next.valueOf = () => total; return next; }因为是用valueOf实现最终值的输出,所以最取值时前面要带上+号console.log(+sum(1,2,3)(4))
稍微优化一下 @asseek 的代码function sum(...args) { let total = 0; const next = (...args) => { total += args.reduce((t, v) => t + v, 0); return next; } next.valueOf = () => total; return next(...args); } console.log(+sum(1, 2, 3)(4)) //[LOG]: 10
因为是用
valueOf
实现最终值的输出,所以最取值时前面要带上+
号