Results 1 - 6 of 6

Arguments object

The arguments object is an Array-like object corresponding to the arguments passed to a function.
arguments Functions JavaScript

arguments.length

The arguments.length property contains the number of arguments passed to the function.
arguments Functions JavaScript Property

arguments[@@iterator]()

The initial value of the @@iterator property is the same function object as the initial value of the Array.prototype.values property.
arguments Deprecated Functions JavaScript Property

arguments.callee

The arguments.callee property contains the currently executing function.
arguments Deprecated Functions JavaScript Property

arguments.caller

The obsolete arguments.caller property used to provide the function that invoked the currently executing function. This property has been removed and no longer works.
arguments Functions JavaScript Obsolete Property

Function.arguments

The function.arguments property refers to an an array-like object corresponding to the arguments passed to a function. Use the simple variable arguments instead.
arguments Deprecated Function JavaScript Property