 JavaScript API Reference for Oracle ADF Faces
JavaScript API Reference for Oracle ADF Faces
SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD 
org.ecmascript.object
Class Arguments
org.ecmascript.object.Object
   |
   +--org.ecmascript.object.Arguments
public abstract class Arguments
extends Object
The native browser JavaScript object that is created when control enters an execution context for function code. References to this object are made using the keyword arguments.
Note that this object is implemented and supported by the web browser and results of its use may vary.
| Field Summary | 
| public static Function | 
callee
Deprecated: use a named function like functionFoo()instead ofarguments.callee() | 
| public static Function | 
caller
Deprecated: use the caller of a named function like functionFoo.callerinstead ofarguments.callee.caller | 
| public static Number | 
length
The number of actual parameter values supplied by the caller (not the expected number of arguments). | 
- public static Function callee
 - The Function object being executed. This allows anonymous functions to be recursive. 
 - 
- Deprecated: use a named function like functionFoo()instead ofarguments.callee()
 
- public static Function caller
 - The Function object being executed when the current Function was executed or - undefinedif the function is a top-level Function.
 
 - 
- Deprecated: use the caller of a named function like functionFoo.callerinstead ofarguments.callee.caller
 
- See also:
- Function.caller
- public static Number length
 - The number of actual parameter values supplied by the caller (not the expected number of arguments). 
- See also:
- Function.length
SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD 
Generated on 2017.04.19 06:37 UTC
Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.