复制1class Person { 2 constructor() { 3 this.name = "Lydia" 4 } 5} 6 7Person = class AnotherPerson { 8 constructor() { 9 this.name = "Sarah" 10 } 11} 12 13const member = new Person() 14console.log(member.name)
1class Person { 2 constructor() { 3 this.name = "Lydia" 4 } 5} 6 7Person = class AnotherPerson { 8 constructor() { 9 this.name = "Sarah" 10 } 11} 12 13const member = new Person() 14console.log(member.name)
本题为“单选题”
题库维护不易,您的支持就是我们最大的动力!