Share via


callee Property (JScript 5.6) 

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


[function.]arguments.callee

Remarks

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.

Example

function factorial(n){

  if (n <= 0)

  return 1;

  else

    return n * arguments.callee(n - 1)

}

print(factorial(3));

Requirements

Version 5.5

Applies To: arguments Object (JScript 5.6)| Function Object (JScript 5.6)

See Also

Reference

caller Property (JScript 5.6)