I have an array of objects that looks like this:
var data = [
{ costOfAirtickets: 2500, costOfHotel: 1200 },
{ costOfAirtickets: 1500, costOfHotel: 1000 },
]
and I want to sum each element in the array to produce an array like this:
var result = [ { costOfAirtickets: 4000, costOfHotel: 2200 } ]
I have used a map and reduce function but I was able to only sum an individual element like so:
data.map(item => item.costOfAirtickets).reduce((prev, next) => prev + next); // 22
At the moment this produces a single value which is not what I want as per initial explanation.
Is there a way to do this in Javascript or probably with lodash.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…