Files
2024-09-27 02:06:13 +08:00

17 lines
142 B
JavaScript

var c = [
{
id: 1
},
{
id: 2
},
{
id: 3
}
]
c.forEach(v => {
v.id = 3
})
console.log(c);