Skip to content
Advertisement

Calculating sum of array objects in javascript , TypeError: parseInt(…).reduce is not a function

I have a array of objects with numbers but there type is string , I want to sum them all.

enter image description here

I’m doing this way as of previous answers on stack-overflow suggested.

JavaScript

But im getting error TypeError: parseInt(...).reduce is not a function , How to fix this ?

Advertisement

Answer

reduce is an array method. So: instead of mapping over the data, call a function within your JSX that returns the sum of the amount values of each object in the array.

Note: if your amount values are strings coerce them to numbers first (Number(good.amount)).

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement