Metodo Para Objeto Donde El Segundo Le Pasa Un Argumento Sera Un Callback Metode Y Pasar Al Arra.Filter

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