javascript join parts of array code example
Example 1: can you do a join() in js without the commas
arr.join("")
Example 2: javascript join list of string
// array.join(separator)
var myArray ['foo', 'bar', 'baz'];
myarray.join(':');
// foo:bar:baz