1
I have the following JSON:
[{"descricao": "teste",
"January": "2454.00",
"February": "220.00",
"March": "1070.25"}, {
"descricao": "teste2",
"January": "275.00"}, {
"descricao": "teste3",
"January": "275.00"}]
I need to record the sum of months in a variable:
- January: total
- February: total
- March: total
How can I do that?