📌  相关文章
📜  循环遍历数组 javascript 代码示例中的对象

📅  最后修改于: 2022-03-11 15:04:28.093000             🧑  作者: Mango

代码示例4
const myArray = [{x:100}, {x:200}, {x:300}];

myArray.forEach((element, index, array) => {
    console.log(element.x); // 100, 200, 300
    console.log(index); // 0, 1, 2
    console.log(array); // same myArray object 3 times
});