Let's say I have an array of objects:
[
{
category: 'Category A',
max: 10,
min: 12
},
{
category: 'Category B',
max: 2,
min: 1
},
{
category: 'Category C',
max: 4,
min: 4
}
]
However, I can't seem to get an array that looks like this:
{
category: 'Category ALL',
max: 16,
min: 17
}
All my attempts to make through reduce did not work.