我在javascript中分配对象时遇到了一些问题。
看看这个重现我的问题的示例代码。
var fruit = {
name: "Apple"
};
var vegetable = fruit;
vegetable.name = "potatoe";
console.log(fruit);
记录
Object {name: "potatoe"}
如何将值而不是对象的引用分配给另一个对象?
答案 0 :(得分:26)
您可以使用Object.assign:
var fruit = {
name: "Apple"
};
var vegetable = Object.assign({}, fruit);
vegetable.name = "potatoe";
console.log(fruit);