1.借助构造函数实现继承functionParent(){this.name'parent';}functionChild(){Parent1.call(this);this.type'child';}缺点:只能实现部分继承。Child只能继承Parent构造函数里面的属性。不能继承Parent原型链上的。functionParent1(){this.name'parent1';}Parent1.prototype.sayfunction(){};functionChild1(){Parent1.call(this);this.type'child1';}console.log(newChild1(),newChild1().say());’2.借助原型链实现继承...