iterate over array of object javascript and access the properties

JavaScript
for (let item of items) {
    console.log(item); // Will display contents of the object inside the array
}
Source

Also in JavaScript: