Kết quả đoạn code sau là gì? Hãy giải thích tại sao?
Kết quả đoạn code sau là gì? Hãy giải thích tại sao?
function compareMembers(person1, person2 = person) {
if (person1 !== person2) {
console.log("Not the same!");
} else {
console.log("They are the same!");
}
}
const person = { name: "Lydia" };
compareMembers(person);
Not the same!
They are the same!
ReferenceError
SyntaxError
Objec...
middle
Gợi ý câu hỏi phỏng vấn
Chưa có bình luận nào