最赞回答 / RuthlessPotato丶
有的浏览器不支持严格模式,当然严格好啊可以消除Javascript语法的一些不合理、不严谨之处,减少一些怪异行为;- 消除代码运行的一些不安全之处,保证代码运行的安全;- 提高编译器效率,增加运行速度;- 为未来新版本的Javascript做好铺垫。
2017-01-06
Student.prototype = new Person();
Student.prototype.constructor = Student
这两行很重要。。这样就使 Student 继承了Person,那么new Student创建出的实例也就继承了Person,bosn.__proto__.__proto__才能指向Person的对象原型
Student.prototype.constructor = Student
这两行很重要。。这样就使 Student 继承了Person,那么new Student创建出的实例也就继承了Person,bosn.__proto__.__proto__才能指向Person的对象原型
2017-01-05