Javascript self-calling of anonymous functions _ javascript skills

Source: Internet
Author: User
Define a function as a temporary namespace. All variables defined in this namespace will not pollute the global namespace, you can refer to js to define a function for temporary namespace, all variables defined in this namespace do not pollute the global namespace (preventing conflicts between local variables and global variables ).

The Code is as follows:


Function mymodule (){
// Module code
}
Mymodule ();


Can be abbreviated:

The Code is as follows:


(Function () {// The mymodule () function is rewritten as an anonymous function expression.
// Module code
} (); // End the function definition and call it immediately


Or:

The Code is as follows:


(Function (){

})();


This method of defining an anonymous function and calling it immediately (self-calling an anonymous function) is already very common and confusing at first. jquery's source code is written like this:

The Code is as follows:


(Function (window, undefined ){

// All jquery code
}) (Window );

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.