JavaScript - Método Array every ()
Descrição
Array JavaScript every método testa se todos os elementos em uma matriz passam no teste implementado pela função fornecida.
Sintaxe
Sua sintaxe é a seguinte -
array.every(callback[, thisObject]);
Detalhes de Parâmetro
callback - Função de teste para cada elemento.
thisObject - Objeto para usar como this ao executar o retorno de chamada.
Valor de retorno
Retorna verdadeiro se cada elemento nesta matriz satisfizer a função de teste fornecida.
Compatibilidade
Este método é uma extensão JavaScript do padrão ECMA-262; como tal, pode não estar presente em outras implementações do padrão. Para fazer isso funcionar, você precisa adicionar o código a seguir na parte superior do seu script.
if (!Array.prototype.every) {
Array.prototype.every = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this && !fun.call(thisp, this[i], i, this))
return false;
}
return true;
};
}
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type = "text/javascript">
if (!Array.prototype.every) {
Array.prototype.every = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this && !fun.call(thisp, this[i], i, this))
return false;
}
return true;
};
}
function isBigEnough(element, index, array) {
return (element >= 10);
}
var passed = [12, 5, 8, 130, 44].every(isBigEnough);
document.write("First Test Value : " + passed );
passed = [12, 54, 18, 130, 44].every(isBigEnough);
document.write("Second Test Value : " + passed );
</script>
</body>
</html>
Resultado
First Test Value : falseSecond Test Value : true