JavaScript - Méthode Array concat ()

La description

Tableau Javascript concat() renvoie un nouveau tableau composé de ce tableau joint à deux tableaux ou plus.

Syntaxe

La syntaxe de la méthode concat () est la suivante -

array.concat(value1, value2, ..., valueN);

valueN - Tableaux et / ou valeurs à concaténer avec le tableau résultant.

Valeur de retour

Cette méthode renvoie un objet tableau représentant le tableau résultant, une concaténation du ou des tableaux actuels et donnés.

Exemple

Essayez l'exemple suivant.

<html>
   <head>
      <title>JavaScript Array concat Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var alpha = ["a", "b", "c"];
         var numeric = [1, 2, 3];
         var alphaNumeric = alpha.concat(numeric);
         document.write("alphaNumeric : " + alphaNumeric ); 
      </script>      
   </body>
</html>

Production

alphaNumeric : a,b,c,1,2,3