This is my current approach and it is functioning correctly
$scope.data = $filter('filter')($scope.data, {dataType: term ,status : 'F'});
However, I need to filter the data based on two status values
$scope.data = $filter('filter')($scope.data, {dataType: term ,status : 'F' ,status:'E'});
The issue is that it is only accepting one status at a time (either F or E)
Any recommendations on how to achieve filtering based on both term and status F and E?