Function.arguments[] (Collection)

The values passed to the function when it is called.

Availability:

ECMAScript edition - 2
JavaScript - 1.1
JScript - 1.0
Internet Explorer - 3.02
Netscape - 3.0
Netscape Enterprise Server - 2.0
Opera - 3.0
Deprecated
JavaScript syntax:-myFunction.arguments

This property is only defined within a function body in a web browser. However some implementations may provide external arguments via this property.

Refer to the Arguments object topic for more details on how to access the caller and callee properties.

Warnings:

See also:Argument, Argument list, Arguments object, Arguments.length, arguments[], Execution context, Function arguments, Function call, Function call operator ( ), function( ... ) ..., Object.prototype, Parameter

Property attributes:

ReadOnly, DontEnum.

Cross-references:

ECMA 262 edition 2 - section - 10.1.6

ECMA 262 edition 2 - section - 10.1.8

ECMA 262 edition 2 - section - 15.2.3.1

ECMA 262 edition 3 - section - 10.1.6

ECMA 262 edition 3 - section - 10.1.8

Wrox Instant JavaScript - page - 27