May 2011
Intermediate to advanced
1096 pages
40h 54m
English
Function.arguments[] — arguments passed to a function
deprecated
function.arguments[i]function.arguments.length
The arguments property of a
Function object is an array of the arguments that are passed to a
function. It is defined only while the function is executing.
arguments.length specifies the
number of elements in the array.
This property is deprecated in favor of the Arguments object; it should never be used in new JavaScript code.
Read now
Unlock full access