js数组对象中相同属性值求和,(数值相加,数组重组)1、需求
数组对象中相同属性值求和,(数值相加,数组重组)
2、案例
let a=[{
"id": 1,
"sahib": 1,
"child": 2,
"age": [3,1],
"index": 0
},{
"sahib": 2,
"age": [],
"child": 0,
"id": 2
}
]
let res = a.reduce((result, next)=>{
if(!result) result = {}
Object.keys(next).forEach((key)=>{
//数值类型
if(typeof next[key] == 'number'){
result[key] = (result[key]?result[key]:0) + next[key]
}
//数组类型
if(next[key] instanceof Array){
result[key] = (result[key]?result[key]:[]).concat(next[key])
}
})
return result
})
console.log(res)
//结果
{
age: [3, 1],
child: 2,
id: 3,
typeof array
index: 0,
sahib: 3
}
声明:此博客为个⼈学习之⽤,如与其他作品雷同,纯属巧合,并请明⽰指出

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。