metodo para objeto donde el segundo le pasa un argumento sera un método de retorno de chamada y pasar al dra.filter

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