let string = "hello"; string += " world"; // "hello world" const newString = string + "!"; // "hello world!"
let text = ""; for(let member in list) { text += list[member]; }