This method is like sum except that it accepts iteratee which is invoked for each element in array to generate the value to be summed. The iteratee is invoked with one argument: (value).
sum
iteratee
array
The array to iterate over.
The iteratee invoked per element.
Returns the sum.
4.0.0
const objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]sumBy(objects, ({ n }) => n)// => 20 Copy
const objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]sumBy(objects, ({ n }) => n)// => 20
This method is like
sumexcept that it acceptsiterateewhich is invoked for each element inarrayto generate the value to be summed. The iteratee is invoked with one argument: (value).