let obj = { name: "John", age: 25 }; let arr = []; arr.push(obj); obj.name = "Tom"; // 修改原始对象 console.log(arr[0].name); // 输出: "Tom"