WAVE Log
配列をスペース区切りの文字列にする

const list = ["one", "two", "three"]; const result = list.join(" "); console.log(result); // "one two three"