itérer sur la gamme d'objets JavaScript et accéder aux propriétés
for (let item of items) {
console.log(item); // Will display contents of the object inside the array
}
Coding Owl