reduce 数组对象属性求和

console.log('求数组对象属性求和');
const arr6 = [{ x: 10 }, { x: 14 }, { x: 15 }, { x: 17 }, { x: 12 }, { x: 19 }];
const arr7 = arr6.reduce((c, R) => c + R.x, 0)
console.log(arr7);
onsole.log('求数组对象属性求和');

转载来源:js reduce 求数组对象属性求和_前端酱紫的博客-CSDN博客_js 数组对象求和

posted @ 2022-03-23 09:27  最好的年纪  阅读(613)  评论(0编辑  收藏  举报