有什么办法可以在下面分配像梨这样的对象属性? (示例不起作用)

var fruitColors = { apple: "green", pear: fruitColors.apple};


我可以通过执行此操作来实现,但是如果可能的话,我想像上面一样进行操作。

var fruitColors = { apple: "green" };
fruitColors.pear = fruitColors.apple;

最佳答案

我认为您不能-因为在尝试访问它的属性时,fruitColors对象不存在。

10-02 12:25