metodo para objeto donde el segundo le pasa un argumento suera un método de devolución de llamada y pasar al arra.filter

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