Javascript Reference
Categories: arguments

javascript arguments callee

@March 15, 2008, 1:22 a.m.
calleeFirefox/Netscape/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.


Powered by Linode.