1、["1", "2", "3"].map(parseInt);
返回的是[1,NaN,NaN],原因,parseInt()参数有两个,map时默认传了这数组里面的为参数了
2、js内置对象
Array、 RegExp、 Number、 String
3、继承的三种方式
B.prototype=A.prototype;
B.prototype=Object.create(A.prototype);
B.prototype=new A();
原型链与类式继承
https://segmentfault.com/a/1190000002440502
4、