JavaScript obtient une chaîne du tableau avec de l'espace entre

var showtimes = ["1pm", "2pm", "3pm"];
var showtimesAsString = showtimes.join(', '); // gives "1pm, 2pm, 3pm"
DeuxAlpha