脑图
可以根据以下代码理解脑图内容:
var myObj = {
name : " a ",
showThis: function(){
this.name = " b "
console.log(this)
}
}
var foo = myObj.showThis
foo()
var myObj = {
name : " a ",
showThis: function(){
console.log(this)
}
}
myObj.showThis()