arguments是什么?
1.在JavaScript的函数内部,参数用数组表示,arguments就是用来访问这个数组的的对象。
2.arguments与数组类似,但不是Array的实例。
3.arguments.length可以用来确定传递的参数个数。
4.arguments[i]也可以像数组一样访问每一个传递的参数,i从0开始,必须为正整数。
参考:https://blog.csdn.net/qq_41554071/article/details/89340035
arguments是什么?
1.在JavaScript的函数内部,参数用数组表示,arguments就是用来访问这个数组的的对象。
2.arguments与数组类似,但不是Array的实例。
3.arguments.length可以用来确定传递的参数个数。
4.arguments[i]也可以像数组一样访问每一个传递的参数,i从0开始,必须为正整数。
参考:https://blog.csdn.net/qq_41554071/article/details/89340035
本文标题:javascript中的arguments
本文链接:https://www.haomeiwen.com/subject/foomyhtx.html
网友评论