因为当我们声明一个函数时,我们将其原型的构造函数属性指向函数本身,所以像这样覆盖函数的原型是一种不好的做法:
function LolCat() {
}
// at this point LolCat.prototype.constructor === LolCat
LolCat.prototype = {
hello: function () {
alert('meow!');
}
// other method declarations go here as well
};
// But now LolCat.prototype.constructor no longer points to LolCat function itself
var cat = new LolCat();
cat.hello(); // alerts 'meow!', as expected
cat instanceof LolCat // returns true, as expected
我不是这样做的,我还是更喜欢下面的方法
LolCat.prototype.hello = function () { ... }
但我经常看到其他人这样做。
那么,为了方便起见,如第一个示例中那样,为了方便起见,通过覆盖函数的原型对象从原型中删除构造函数引用是否有任何影响或缺点?