选择题1185题:输出是什么?

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());
难度:
更新时间:2021-07-04

本题为单选题”

赞赏支持

预览

题库维护不易,您的支持就是我们最大的动力!