Answers for "sum up the value of array of object js"

11

javascript sum array of objects

arr = [{x:1}, {x:3}]

arr.reduce((accumulator, current) => accumulator + current.x, 0);
Posted by: Guest on April-29-2020
1

js get sum of array of objects

const getSumByKey = (arr, key) => {
  return arr.reduce((accumulator, current) => accumulator + Number(current[key]), 0)
}

arr = [{x:1}, {x:3}]
getSumByKey(arr, 'x') // returns 4
Posted by: Guest on June-04-2021

Code answers related to "sum up the value of array of object js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language