Parameters of arguments in javascript Functions

Source: Internet
Author: User

At noon, I studied arguments in javascript Functions.
Copy codeThe Code is as follows:
<Script type = "text/javascript">
Window. onload = function (){
(Function (arg1, arg2 ){
Alert (arguments. length );
Alert (arguments. callee. length );
})();
}
</Script>

The arguments. length and arguments. callee are observed.

First, arguments makes sense only in the function body. arguments. length returns the number of arguments passed into the function. For example, if an anonymous function is directly run without being passed in, the first alert must be '0', and then let's look at arguments. callee returns the called function itself. For anonymous functions, you can use arguments. callee gets its reference. Here arguments. callee. length returns the number of parameters that the function is expected to pass in. In this case, the second alert is '2'. If this is a function with a name, such as the function named mytest, you can directly use mytest. length to get the number of parameters that should be passed in.

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.