Ajouter du texte à String JavaScript


let text = "";
for(let member in list) {
  text += list[member];
}

Colorful Crayfish