JavaScript: metodo Array every ()
Descrizione
Matrice JavaScript every metodo verifica se tutti gli elementi in un array superano il test implementato dalla funzione fornita.
Sintassi
La sua sintassi è la seguente:
array.every(callback[, thisObject]);
Dettagli dei parametri
callback - Funzione da testare per ogni elemento.
thisObject - Oggetto da utilizzare come this durante l'esecuzione della richiamata.
Valore di ritorno
Restituisce vero se ogni elemento in questo array soddisfa la funzione di test fornita.
Compatibilità
Questo metodo è un'estensione JavaScript dello standard ECMA-262; come tale potrebbe non essere presente in altre implementazioni dello standard. Per farlo funzionare, è necessario aggiungere il codice seguente all'inizio dello 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;
};
}
Esempio
Prova il seguente esempio.
<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>
Produzione
First Test Value : falseSecond Test Value : true