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());
本题为"单选题"
题库维护不易,您的支持就是我们最大的动力!