Answers for "how to loop in the array proprieties in js"

2

how to get value in array object value using for loop in javascript

const myArray = [{x:100}, {x:200}, {x:300}];

const newArray= myArray.map(element => element.x);
console.log(newArray); // [100, 200, 300]
Posted by: Guest on May-11-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language