HZFE / awesome-interview

剑指前端 Offer
http://febook.hzfe.org/
Other
2.34k stars 175 forks source link

ES5、ES6 如何实现继承 | HZFE - 剑指前端 Offer #25

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

ES5、ES6 如何实现继承 | HZFE - 剑指前端 Offer

相关问题

https://hzfe.github.io/awesome-interview/book2/js-inherite/

gricn commented 3 years ago
  1. 构造函数继承# 构造函数继承的思想:子类型构造函数中调用父类的构造函数,使所有需要继承的属性都定义在实例对象上。 function SuperType(name) { this.name = name; this.b = [1, 2, 3, 4]; }

this.b 应为[1, 2, 3] 而非 [1, 2, 3, 4]

Akiq2016 commented 3 years ago
  1. 构造函数继承# 构造函数继承的思想:子类型构造函数中调用父类的构造函数,使所有需要继承的属性都定义在实例对象上。 function SuperType(name) { this.name = name; this.b = [1, 2, 3, 4]; }

this.b 应为[1, 2, 3] 而非 [1, 2, 3, 4]

收到

restartgr commented 2 years ago

这里讲述原型链的时候加一张图片描述关系会不会更好些,