具有相同名称的函数内的Javascript函数声明

时间:2013-09-12 20:39:05

标签: javascript

我刚刚在javascript中看到了这种模式:

var test = function () {
    function test(args) {
       this.properties = args || {}; //etc
    }
}

test.prototype.methodName = function (){} //...etc

功能定义是怎么回事;在外面和内部宣布一次。这种方法的价值是什么?

0 个答案:

没有答案