I\'m working through the AngularJS tutorial, and understand the basics of
However, the out of the box implementation seems limited to just filter the list of items
Alternatively you could use the default Angular filter within your custom filter like so:
angular.module('app').filter("multiWordFilter", function($filter){
    return function(inputArray, searchText){
        var wordArray = searchText ? searchText.toLowerCase().split(/\s+/) : [];
        var wordCount = wordArray.length;
        for(var i=0;iThis could be embellished further with user2005009's AND_OR comparator.