I have the following json:
[{titulo : "Total", balesia : 1, torre:2, CT:3, HF :6}, {titulo : "Total", balesia : 4, torre:2, CT:5, HF :8} ]
I need to go through it and add only those that have a numerical value and store it in another object.
How to traverse this json object and add the numerical values to store the result of the sum in another object?
I'm not that good at javascript.