Student.prototype.constructor = Student
如果不显示的将constructor 设置为Student,那么下一次
当出于实现继承的目的而修改了构造器Student.prototype时,Student.prototype.constructor已经不是Student了,为了避免误解,手动重设Student.prototype.constructor属性,这样通过new Student创建的实例的constructor又可以正确取到Student了 引用问题链接
对这段话不理解,老师能否用一个例子解释一下,怎样修改构造器Student.prototype 之后,并且也没有显示重设Student.prototype.constructor,那么通过new Student创建的实例会发生变化