javascript arguments callee
| callee | NN 6 IE 5(Mac)/5.5(Win) ECMA 1 |
| Read-only | |
|
Provides a reference to the function that created the arguments object. This property provides the essential reference to the current function, which an anonymous function would require for it to be called in a recursive construction. |
|
| Example | |
myObj.doThis = function(input) {
// function statements that act on parameter value
if (!someCondition) {
arguments.callee(input);
}
}
|
|
| Value | |
Function object reference. |
|
Previous: javascript arguments length
264,Nickname,Homepage or email,Comments here,Add comment
