摘要:
一、JavaScript中new实现原理 1、创建一个空对象 obj 2、将该对象 obj 的原型链 __proto__ 指向构造函数的原型 prototype, 并且在原型链 __proto__ 上设置 构造函数 constructor 为要实例化的 Fn 3、传入参数,并让 构造函数 Fn 改变 阅读全文
摘要:
聊一聊js中的继承 一、简单继承 使用原型赋值的方式继承,将实例化的对象,赋值给子级的原型 父级构造函数 function Parent(param) { this.name = 'parent' this.otherName = 'otherName' this.param = param || 阅读全文