Is it possible to filter with multiple condition in angularjs?
You should create a custom filter. By evaluating multiple conditions in one filter it will gain 'performance'.
$scope.filterData = function (item) {
return (item.SECURITYCLASS === 90 || item.SECURITYCLASS === 93);
}
<div ng-repeat="item in data | filter:filterData">
{{::item}}
</div>
//demo
http://plnkr.co/edit/aDx3SfXaTqEqrlMxIzgd