请帮助我理解这段代码。
var person = {
'first-name': 'FirstName',
'last-name': 'LastName',
'gender': 'Male'
};
var anotherPerson = new Object(person);
anotherPerson.desig = 'Designation';
console.log('Another person designation: ' + anotherPerson['desig'] + ', person designation: ' + person['desig']);
我预计输出是,Another person designation: Designation, person designation: undefined
但令我惊讶的是,我发现它是`Another person designation: Designation, person designation: Designation
。
据我说anotherPerson
,扩展person
对象和属性设置为anotherPerson
不应该对person
对象可见。我在这里错了吗?还是两个对象都指向同一个位置?
[编辑]
现在还有更多惊喜。
我在上面添加了以下代码。
person.place = 'XYZ';
console.log(person['place'] + ', ' + anotherPerson['place']); // Expected: XYZ, undefined. Result: XYZ, XYZ.
基于上述结果和答案,我认为两个对象都指的是同一个位置。现在我又添加了几行
person = undefined;
console.log(anotherPerson['place']) //Expected: error, Result: XYZ. ??!?!?
console.log(person['place']) // Expected: error, Result: error.
有人可以让我明白这一点吗?提前感谢您的帮助