var myArrayOfObjects = [{Group:MD,qtyA:4,qtyB:5},{Group:IL,qtyA:1,qtyB:3},{Group:FL,qtyA:5,qtyB:5}];
//RESULT I'M LOOKING FOR:
// [{Group:MD,Total:9},{Group:IL,Total:4},{Group:FL,Total:10}]
I'm initially using reduce to get the myArrayOfObjects but I can't figure out how to total everything and keep the Group in the object as part of the array