JavaScript - Metodo Array concat ()
Descrizione
Matrice Javascript concat() restituisce un nuovo array composto da questo array unito a due o più array.
Sintassi
La sintassi del metodo concat () è la seguente:
array.concat(value1, value2, ..., valueN);
valueN - Array e / o valori da concatenare all'array risultante.
Valore di ritorno
Questo metodo restituisce un oggetto array che rappresenta l'array risultante, una concatenazione degli array correnti e dati.
Esempio
Prova il seguente esempio.
<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>
Produzione
alphaNumeric : a,b,c,1,2,3