I have the following array like this
[
{name: "calpol", quantity: 12},
{name: "paracetamol", quantity: 15},
{name: "paracetamol", quantity: 10},
]
and I want to sum up the quantity when the product is the same so i can get an array like :
[
{name: "calpol", quantity: 12},
{name: "paracetamol", quantity: 25},
]