码迷,mamicode.com
首页 > 编程语言 > 详细

arguments转化为数组

时间:2014-10-10 20:18:34      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   bs   type   app   函数   数组   nbsp   不能   

每个函数都有arguments属性存放参数,它是类似数组,但不是数组,不能进行数组操作。

有的时候,我们需要arguments进行一些数字操作,可以将其转化为数组: 

var slice = Array.prototype.slice,
  args = slice.apply(arguments);

这样,变量args就成为存放着arguments元素的数组了。

  

arguments转化为数组

标签:ar   sp   bs   type   app   函数   数组   nbsp   不能   

原文地址:http://www.cnblogs.com/damade/p/4016452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!