javascript array to string with space code example
Example 1: javascript array to string without commas
arr.join("")
Example 2: javascript get string from array with space between
var showtimes = ["1pm", "2pm", "3pm"];
var showtimesAsString = showtimes.join(', '); // gives "1pm, 2pm, 3pm"