1function compareMembers(person1, person2 = person) { 2 if (person1 !== person2) { 3 console.log("Not the same!") 4 } else { 5 console.log("They are the same!") 6 } 7} 8 9const person = { name: "Lydia" } 10 11compareMembers(person)
本题为"单选题"
参考答案:
正确选项:B:They are the same!
对象通过引用传递。 当我们检查对象的严格相等性(===)时,我们正在比较它们的引用。
我们将“person2”的默认值设置为“person”对象,并将“person”对象作为“person1”的值传递。
这意味着两个值都引用内存中的同一位置,因此它们是相等的。
运行“ else”语句中的代码块,并记录They are the same!
。
最近更新时间:2021-07-03
题库维护不易,您的支持就是我们最大的动力!