摘要: 1. 原型链继承 (原型链) function Parent() { this.fruits = ['apple', 'orange']; } Parent.prototype.sayHello = function () { console.log('Parent'); }; function C 阅读全文
posted @ 2021-04-13 12:45 纳齐尔 阅读(64) 评论(0) 推荐(0) 编辑