我们先看JS类的继承
<Meta charset="UTF-8">
JS类的继承
/* -- 类式继承 -- */
我们再看JS原型继承
<Meta charset="UTF-8">
JS原型继承
我们可以试验一下,JS类的继承 children.constructor==father 返回的是true,而原型继承children.constructor==father 返回的是false;
原文链接:https://www.f2er.com/js/49380.html