iterar sobre la matriz de objeto JavaScript y acceder a las propiedades
for (let item of items) {
console.log(item); // Will display contents of the object inside the array
}
Coding Owl