我刚刚在 javascript 中看到了这种模式:
var test = function () {
function test(args) {
this.properties = args || {}; //etc
}
}
test.prototype.methodName = function (){} //...etc
函数定义发生了什么;一次在外面,一次在里面。这种方法的价值是什么?
我刚刚在 javascript 中看到了这种模式:
var test = function () {
function test(args) {
this.properties = args || {}; //etc
}
}
test.prototype.methodName = function (){} //...etc
函数定义发生了什么;一次在外面,一次在里面。这种方法的价值是什么?