复制1function getInfo(member, year) { 2 member.name = "Lydia"; 3 year = "1998"; 4} 5 6const person = { name: "Sarah" }; 7const birthYear = "1997"; 8 9getInfo(person, birthYear); 10 11console.log(person, birthYear);
1function getInfo(member, year) { 2 member.name = "Lydia"; 3 year = "1998"; 4} 5 6const person = { name: "Sarah" }; 7const birthYear = "1997"; 8 9getInfo(person, birthYear); 10 11console.log(person, birthYear);
本题为“单选题”
题库维护不易,您的支持就是我们最大的动力!