我正在阅读 JavaScript,我想出了这个简单的代码片段
var student = function(){
this._name = "";
this._funct = function(){
console.log(this._name);
}
}
student._name="alax";
console.log(student._name);
student._funct(); //Fails - error: Uncaught TypeError: student._funct is not a function
我的最后一句话失败了。谁能告诉我为什么它失败了?
宝慕林4294392
相关分类