JavaScript - Metodo Array forEach ()

Descrizione

Matrice Javascript forEach() metodo chiama una funzione per ogni elemento nell'array.

Sintassi

La sua sintassi è la seguente:

array.forEach(callback[, thisObject]);

Dettagli dei parametri

  • callback - Funzione per testare ogni elemento di un array.

  • thisObject - Oggetto da usare come questo quando si esegue la richiamata.

Valore di ritorno

Restituisce l'array creato ..

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 seguente codice nella parte superiore dello script.

if (!Array.prototype.forEach) {
   Array.prototype.forEach = 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);
      }
   };
}

Esempio

Prova il seguente esempio.

<html>
   <head>
      <title>JavaScript Array forEach Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         if (!Array.prototype.forEach) {
            Array.prototype.forEach = 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);
               }
            };
         }
         function printBr(element, index, array) {
            document.write("<br />[" + index + "] is " + element ); 
         }
         [12, 5, 8, 130, 44].forEach(printBr);
      </script>      
   </body>
</html>

Produzione

[0] is 12
[1] is 5
[2] is 8
[3] is 130
[4] is 44