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:
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!
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);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With