This topic has not yet been rated - Rate this topic

callee Property (JavaScript)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns the Function object being executed, that is, the body text of the specified Function object.

[function.]arguments.callee

The optional function argument is the name of the currently executing Function object.

The callee property is a member of the arguments object that becomes available only when the associated function is executing.

The initial value of the callee property is the Function object being executed. This allows anonymous functions to be recursive.

function factorial(n){
  if (n <= 0)
     return 1;
  else
     return n * arguments.callee(n - 1)
}
document.write(factorial(4));

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Metro style apps. See Version Information.

Applies To: arguments Object (JavaScript)| Function Object (JavaScript)

Did you find this helpful?
(1500 characters remaining)