iterate over lists within lists js code example
Example: 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]