视频里是 Student.prototype.constructor = Person; 而笔记里是Student.prototype.constructor = Student; ,到底是哪个呢?
那你想自己创建的对象是使用哪个构造器就用哪个!但是一般继承后都是用自己的构造器!
Student.prototype.constructor = Student 这个。