在nodejs的源码中看到这样的写法class.prototype.foo=function foo
,想问问这样的的用意是什么?
EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {
if (typeof n !== 'number' || n < 0 || isNaN(n))
throw new TypeError('n must be a positive number');
this._maxListeners = n;
return this;
};
我的问题是问什么还要在function后面再声明一次函数名
// 为什么不这样写,而要在多声明一次
EventEmitter.prototype.setMaxListeners = function (n) {
if (typeof n !== 'number' || n < 0 || isNaN(n))
throw new TypeError('n must be a positive number');
this._maxListeners = n;
return this;
};
相关分类