Web site optimization - A arguments[] (Collection) Property attributes: ReadOnly, DontEnum.
A arguments[] (Collection) Property attributes: ReadOnly, DontEnum. Cross-references: Wrox Instant JavaScript, ISBN 1-861001-27-4 page 27 myResult = myFunction(aaa, bbb, ccc, ddd); Arguments array length aaa bbb ccc ddd arguments[] (Collection) A property that is available inside a function to access its Arguments object. ECMAScript edition 2 JavaScript 1.1 JScript 5.5 Internet Explorer 5.5 Netscape 3.0 Availability: This property is only defined within a function body in a web browser. However, some implementations may provide external arguments via this property. See also: Arguments object, Function arguments, Function.arguments[] Property attributes: ReadOnly. argv parameter (Definition) A command-line argument collection. Since JavaScript can be used in many environments, it is possible that in a server-side application you will have access to the command-line arguments. If that is the case, then it is likely that you will have an argv property, which contains the argument values.