为什么 MDN 的 'Object.create' polyfill 没有设置"prototype.constructor"?



考虑MDN的Object.create polyfill:

if (typeof Object.create != 'function') {
  (function () {
    var F = function () {};
    Object.create = function (o) {
      if (arguments.length > 1) { throw Error('Second argument not supported');}
      if (o === null) { throw Error('Cannot set a null [[Prototype]]');}
      if (typeof o != 'object') { throw TypeError('Argument must be an object');}
      F.prototype = o;
      return new F();
    };
  })();
}

特别关注这两条线:

F.prototype = o;
return new F();

我想知道,为什么设置F.prototype.constructor = F;不合适

F.prototype = o;
F.prototype.constructor = F;  // why not?
return new F();

我想知道,为什么设置F.prototype.constructor=F;不合适;?

F是一个临时函数,似乎有意没有办法从Object.create之外引用它。

相关内容

  • 没有找到相关文章

最新更新