adding values in an array of objects code example
Example: javascript sum of number in object array
run.addEventListener("click", function () {
let sum = people.reduce(function (a, b) { // function(previousValue, currentValue)
return {
age: a.age + b.age, //select age in object array
};
});
console.log(sum); //output sum of ages
});