I have something like this:
$scope.traveler = [ { description: \'Senior\', Amount: 50}, { description: \'Senior\', Amount: 50},
You can do the following:
$scope.traveler.map(o=>o.Amount).reduce((a,c)=>a+c);