Array.prototype.add = function () {
let res = this.reduce((prev, cur) => {
return prev + cur;
}, 0);
return Number(res);
}
let a = [1, 2, 3];
console.log(a.add()); // 6
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/Web/285.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!