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]]
The values returned by the 0 . . . n properties are the actual values passed to the executing function. While not actually an array of arguments, the individual arguments that comprise the arguments object are accessed the same way that array elements are accessed.
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:
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()));
Applies To: arguments Object | Function object