javascript join list code example
Example 1: javascript array to comma separated string
var colors = ["red", "blue", "green"];
var colorsCSV = colors.join(",");
Example 2: javascript join array
var array = ["Joe", "Kevin", "Peter"];
array.join();
array.join("-");
array.join("");
array.join(". ");
Example 3: javascript join list of string
var myArray ['foo', 'bar', 'baz'];
myarray.join(':');
Example 4: javascript join address to string
var address = "foo";
var city;
var state = "bar";
var zip;
text = [address, city, state, zip].filter(Boolean).join(", ");
console.log(text)
Example 5: js array join
['h', 'e', 'y'].join('')