I have an array of objects that looks like the following:
{value: 20, color: 'F88C00'},
{value: 40, color: 'D8605F'},
{value: 20, color: '72C380'},
{value: 20, color: '2C7282'},
{value: 20, color: '72C380'}
I want to use javascript/jquery to loop through them to check if there are any duplicates in the color column, and if there are duplicates, here '72C380' occurs twice. Then there should be only one entry but their values should be summed.
Desired Output:
{value: 20, color: 'F88C00'},
{value: 40, color: 'D8605F'},
**{value: 40, color: '72C380'},**
{value: 20, color: '2C7282'}
I know how to do that in python, but not JS