cada método testa se todos os elementos em uma matriz passam no teste implementado pela função fornecida.
Sintaxe
array.every(callback[, thisObject]);
Parâmetros
Valor de retorno
Devoluções true se cada elemento neste array satisfizer a função de teste fornecida.
Exemplo
function isBigEnough(element, index, array) {
return (element >= 10);
}
var passed = [12, 5, 8, 130, 44].every(isBigEnough);
console.log("Test Value : " + passed );
Resultado
Test Value : false