O método filter () cria um novo array com todos os elementos que passam no teste implementado pela função fornecida.
Sintaxe
array.filter(callback[, thisObject]);
Parâmetros
Valor de retorno
Retorna a matriz criada.
Exemplo
function isBigEnough(element, index, array) {
return (element >= 10);
}
var passed = [12, 5, 8, 130, 44].filter(isBigEnough);
console.log("Test Value : " + passed );
Resultado
Test Value :12,130,44