看到有好多方法实现继承,什么组合式继承、寄生式继承,有的还有好多缺点,感觉下面这样或者es6都能很好实现继承啊,为什么还会有以上那些方法
function Parent(name) { this.name = name} Parent.prototype.getName = function() { console.log(this.name) }function Child(name) { Parent.call(this, name) this.*** = *** /// } Child.prototype = Object.create(Parent.prototype) child.prototype.fn = function*** ///
紫衣仙女
白衣染霜花