问答详情
源自:8-5 实现继承的方式

Student.prototype = Object.create(Person.prototype); Student.prototype.constructor = Person

视频里是  Student.prototype.constructor = Person; 而笔记里是Student.prototype.constructor = Student;  ,到底是哪个呢?

提问者:北极以北02 2016-04-17 19:21

个回答

  • 飞过那座山
    2016-06-27 23:05:33

    那你想自己创建的对象是使用哪个构造器就用哪个!但是一般继承后都是用自己的构造器!

  • 你糖都化了
    2016-04-18 11:27:33

    Student.prototype.constructor = Student 这个。