标签: javascript
我刚刚在javascript中看到了这种模式:
var test = function () { function test(args) { this.properties = args || {}; //etc } } test.prototype.methodName = function (){} //...etc
功能定义是怎么回事;在外面和内部宣布一次。这种方法的价值是什么?