Answers for "add up the price in an object array in javascript"

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

Code answers related to "add up the price in an object array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language