var v = new Array('Bill','Erik','Pam');v.constructor;v.constructor //Returns "undefined, not Array(); var s = new String('Couch Potato');
s.slice(1,5);
我有一个“自定义”目录,我想在其中存储对内置对象原型的任何更改。每个被修改的内置对象都将有自己的文件(即custom/String.js用于对String.prototype的任何修改)。除了这些文件之外,我还将有一个名为custom/All.js的文件,它将用于导出要使用的自定义功能。export * from './Array'import * from '