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

原文:http://rubyqiu.php.blog.163.com/blog/static/8614152320098211576782/

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

  1. Array.apply(null,arguments);  
  2. Array.prototype.slice.call(arguments,0);  
  3. Array.prototype.splice.call(arguments,0,arguments.length); 
示例:




你可能感兴趣的:(js)