码迷,mamicode.com
首页 > 其他好文 > 详细

arguments

时间:2014-12-02 20:39:05      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   on   

arguments

arguments是一个类数组对象,该对象是传递函数的实际参数(实参)。我们可以在函数内部访问arguments,如果在函数外面访问arguments,则会报错。

bubuko.com,布布扣

arguments是函数收到的实际参数,使用arguments.length属性可以检查实参与形参数目是否相等,如下:

function f(a,b){
    console.log(arguments);
}
f(1,2,3,4,5);
//[1, 2, 3, 4, 5] 

arguments跟数组很相似,但不是数组。它除了拥有length属性外,没有Array的其他属性也没有像slice(),pop()等方法。但是我们可以使它转换成数组:

var args = Array.prototype.slice.call(arguments);

 

arguments

标签:style   blog   http   io   ar   color   使用   sp   on   

原文地址:http://www.cnblogs.com/huanghongxia/p/3995218.html

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