Answers for "iterate over array of object javascript and access the properties"

0

How to loop through an array containing objects and access their properties

yourArray.forEach(function (arrayItem) {
    var x = arrayItem.prop1 + 2;
    console.log(x);
});
Posted by: Guest on June-29-2021
-1

iterate over array of object javascript and access the properties

for (let item of items) {
    console.log(item); // Will display contents of the object inside the array
}
Posted by: Guest on April-29-2020

Code answers related to "iterate over array of object javascript and access the properties"

Code answers related to "Javascript"

Browse Popular Code Answers by Language