Answers for "how to find sum of elements of array of objects angular"

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 "how to find sum of elements of array of objects angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language