• 2022-06-19
    var person = {[br][/br] firstName: "Bill", lastName : "Gates", id : 648, fullName : function() { return this.firstName + " " + this.lastName; } }; 请问运行代码console.log(person.fullName())结果为______
  • 举一反三