Returns the actual value of individual arguments from an arguments object returned by the arguments property of an executing function.
|
---|
[function.]arguments[[0|1|2|...|n]] |
Arguments
-
function
-
Optional. The name of the currently executing Function object.
- 0, 1, 2, , n
-
Required. Non-negative integer in the range of 0 to n where 0 represents the first argument and n represents the final argument. The value of the final argument n is arguments.length-1.
Remarks
Example
The following example illustrates the use of the 0 . . . n properties of the arguments object. To fully understand the example, pass one or more arguments to the function:
| Copy Code |
---|
function ArgTest(){
var s = "";
s += "The individual arguments are: "
for (n=0; n< arguments.length; n++){
s += ArgTest.arguments[n];
s += " ";
}
return(s);
}
print(ArgTest(1, 2, "hello", new Date())); |
Requirements
See Also