javascript string array to string code example
Example 1: javascript array to comma separated string
var colors = ["red", "blue", "green"];
var colorsCSV = colors.join(","); //"red,blue,green"
Example 2: can you do a join() in js without the commas
arr.join("")
Example 3: array to string javascript
<array>.join(<splitting character(s)>);