Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filter NOT equals in AngularJS

I have a array of objects, in client side. The object in array look like this:

{
    code: 0,
    short_name: 'a',
    type: 1
}

I try to filter this array to 2 arrays:

  1. With type === 1
  2. With type !== 1

I did this:

$scope.array1 = $filter('filter')(data, {type: 1}, true);
$scope.array1 = $filter('filter')(data, {type: !1});

But the not-equal didn't work... what can I do?

Thank you!

like image 347
prog_prog Avatar asked Dec 19 '22 18:12

prog_prog


1 Answers

Again, if you are just going to filter, use the native method instead:

$scope.array1 = data.filter(x => x.type === 1);
$scope.array2 = data.filter(x => x.type !== 1);
like image 60
Kutyel Avatar answered Jan 05 '23 09:01

Kutyel