JavaScript anonymous functions and delegation, javascript anonymous Functions

Source: Internet
Author: User

JavaScript anonymous functions and delegation, javascript anonymous Functions

<1>

<Html xmlns = "http://www.w3.org/1999/xhtml"> 



Javascript anonymous Functions

This is the function in the object,
Blog. blogSorter (b1, b2); // you can call this operation directly.
The object is a Blog,
BlogSorter is a function in a Blog object.
I understand.

Parameters of JavaScript anonymous Functions

In fact, all functions can pass parameters, depending on whether you have done the corresponding processing in the function body:

When an anonymous function has a form parameter, it can pass the corresponding real parameter:
(Function (a, B)
{
Alert (a + "and" + B );
}
) ("A", "B"); // return "a and B"

When an anonymous function does not have a parameter, you can use arguments to process it:
(Function ()
{
Var str = ""
For (I = 0; I <arguments. length; I ++)
{
Str + = arguments [I] + ",";
}
Alert (str );
}
) ("A", "B", "c", "d"); // return "a, B, c, d ,"

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.