Metodo para objeto donde el segundo le pasa un argumento séra de la méthode de rappel y pasar al arra.filter

// This works!
var turkey = Array.prototype.filter.call(sandwiches, function (sandwich) {
	return sandwich.matches('.turkey');
});
Pocho