how to make an array into a string javascript code example
Example 1: javascript array to comma separated string
var colors = ["red", "blue", "green"];
var colorsCSV = colors.join(","); //"red,blue,green"
Example 2: js array to string
var myArray = ['no','u'];
var myString = myArray.toString();