I have an array:
[
{"allocateProd1": "30.0000"},
{"allocateProd2": "0"},
{"allocateProd3": "0"},
{"allocateProd4": "30"}
]
This array is dynamically generated as in the number of objects inside varies depending on data
I need an object:
{
"allocateProd1": "30.0000",
"allocateProd2": "0",
"allocateProd3": "0",
"allocateProd4": "30"
}
Mostly going to use it in React. JS/ES6 solution will help