If I have an array of strings, I can use the .join() method to get a single string, with each element separated by commas, like so:
.join()
[\"Joe\", \"
On node or ES6+:
users.map(u => u.name).join(', ')