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