JavaScript's Callee Property

Source: Internet
Author: User

Returns the function object being executed, which is the body of the specified function object.

[function.] Arguments.callee
Notes

The optional function parameter is the name of the currently executing function object.

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

the initial value of the callee property is the Function object that is being executed. This will allow anonymous functions to be recursive.

ExampleJavascript
functionFactorial (n) {if(n <= 0)return1;Else     returnn * Arguments.callee (n-1)}document.write (factorial (4));
The code above will output 24.

JavaScript's Callee Property

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.