js函数化模块模式该怎么应用?

js函数化模块模式该怎么应用?

Function.prototype.method = function (name, func) {在Function的原型上增加一个函数叫做“method”。该方法会在“类”的原型上增加指定函数名的函数。    if (!this.
JavaScript290