Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 343 Bytes

this-4.md

File metadata and controls

24 lines (19 loc) · 343 Bytes

代码块题

写出打印结果

var fullName = "alibaba";
var obj = {
  fullName:"baidu",
  prop:{
    fullName:"tengxun",
    getFullName: function(){
      return this.fullName;
    }
  }
}
console.log(obj.prop.getFullName());// tengxun
var test = obj.prop.getFullName;
console.log(test());

结果:

tengxun alibaba