Descrição
Array Javascript join() método junta todos os elementos de um array em uma string.
Sintaxe
Sua sintaxe é a seguinte -
array.join(separator);
Detalhes de Parâmetro
separator - especifica uma string para separar cada elemento da matriz. Se omitido, os elementos da matriz são separados por uma vírgula.
Valor de retorno
Retorna uma string após juntar todos os elementos da matriz.
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<title>JavaScript Array join Method</title>
</head>
<body>
<script type = "text/javascript">
var arr = new Array("First","Second","Third");
var str = arr.join();
document.write("str : " + str );
var str = arr.join(", ");
document.write("<br />str : " + str );
var str = arr.join(" + ");
document.write("<br />str : " + str );
</script>
</body>
</html>
Resultado
str : First,Second,Third
str : First, Second, Third
str : First + Second + Third