Answers for "array object reduce to find value"

5

javascript reduce array of objects

var objs = [
  {name: "Peter", age: 35},
  {name: "John", age: 27},
  {name: "Jake", age: 28}
];

objs.reduce(function(accumulator, currentValue) {
  return accumulator + currentValue.age;
}, 0); // 35 + 27 + 28 = 90
Posted by: Guest on May-21-2020

Code answers related to "array object reduce to find value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language