i am new in angular and i am bit familiar with filter
word but what is filterFilter
word and usage in angular. just come across a code below from this url https://stackoverflow.com/a/22704140/6188148.
see the code
angular.module('FilterInControllerModule', []).
controller('FilterController', ['filterFilter', function(filterFilter) {
this.array = [
{name: 'Tobias'},
{name: 'Jeff'},
{name: 'Brian'},
{name: 'Igor'},
{name: 'James'},
{name: 'Brad'}
];
this.filteredArray = filterFilter(this.array, {name:'Igor'});
}]);
just tell me what is filterFilter
? is it any built-in filter ?