I have a variable defined in a controller that stores json values:
$rootScope.fullList;
I have been able to successfully filter the results using a filter I found to return only exact matches to a keyword and display the results on my page. I need to store these filtered values into a new variable.
$scope.filteredList = $rootScope.fullList| exactMatch:'STATUS';
Something like this.