I have this array
const data =[
{total: 90, date:"2021-11-16T07:20:23.000Z"},
{total: 10, date:"2021-11-16T07:20:23.000Z"},
{total: 50, date:"2021-11-17T07:20:23.000Z"}
];
i want to sort this array so the objects that have same date i want to sum the values of the total and the number of these objects with same date with new property called count. result should looks like
const newData =[
{ total: 100, date:"2021-11-16T07:20:23.000Z", count:2},
{ total: 50, date:"2021-11-17T07:20:23.000Z", count:1}
];