一、实例
1. new Person()在前
1 | Person.prototype.name = 'sunny'; |
2. new Person()在后
1 | Person.prototype.name = 'sunny'; |
3. 改变写法
1 | Person.prototype.name = 'sunny'; |
1 | 这样理解 |
4. new Person最后执行
1 | Person.prototype.name = 'sunny'; |
二、隐式添加
1 | Person.prototype.name = 'abc'; |
三、继承
1 | // 继承 |