I am trying to add my $scope together, but having issues with it.
I am using
$scope.total = ($scope.list_category1.id || 0) + ($scope.list_category2.id || 0) + ($scope.list_category3.id || 0);
but I can't seem to add my values together until all the selects have got a value.
Please help