1function Person(firstName, lastName) { 2 this.firstName = firstName; 3 this.lastName = lastName; 4} 5 6const member = new Person("Lydia", "Hallie"); 7Person.getFullName = function () { 8 return `${this.firstName} ${this.lastName}`; 9} 10 11console.log(member.getFullName());
本题为“单选题”