Javascript array join() method joins all the elements of an array into a string.
Its syntax is as follows −
array.join(separator);
separator − Specifies a string to separate each element of the array. If omitted, the array elements are separated with a comma.
Returns a string after joining all the array elements.
Try the following example.
<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>
str : First,Second,Third str : First, Second, Third str : First + Second + Third