Answers for "sum if the epecefic value is true in array object"

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
8

js sum of array

[1, 2, 3, 4].reduce((a, b) => a + b, 0)

// Output: 10
Posted by: Guest on July-26-2020

Code answers related to "sum if the epecefic value is true in array object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language