将arguments属性转换成Array的几种方法

通常将类数组(Array-Like)arguments转换成数组可以采用以下的方法:

 

Array.apply(null,arguments);
Array.prototype.slice.call(arguments,0);
Array.prototype.splice.call(arguments,0,arguments.length);

 

IE无效

Array.concat.apply([],arguments);

你可能感兴趣的:(prototype,IE)