最近想在重新学下ES6,所以就把自己学到的,记录下加强下自己的理解 首先先简单的聊下ES5和ES6中的继承 1.在es5中的继承: function parent(a,b){ this a = a; this b = b; } function child(c){ this c = c }; 通过子集去继承父级: parent.call(child,1,2) 而去看call的底层方法可知,继承的过程是通过prototype属性 child.prototype = new parent(1,2);…