我对以下代码中的“ this ”关键字感到困惑,有两个“this”:
var Foo = function(string){
this.name=string // 1st-this
}
Foo.prototype.get_name = function(){
return this.name // 2nd-this
}
var myFoo = new Foo('John')
the_name=myFoo.get_name()
' the_name ' 等于 'John',原型方法通过 return this.name获取名称。但是,任何人都可以向我解释,一号通本和二速此,他们代表的是什么做的?