class.prototype.foo=function foo 这样写的用意是什么

在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;

};


SMILET
浏览 574回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript