JS (function () {...}) () immediately execute function comprehension

Source: Internet
Author: User

(function () {...}) () and (function () {...} ()) is a common way of writing two JavaScript functions immediately, initially I thought it was a parenthesis wrapping an anonymous function, followed by parentheses to call a function, and finally to the function definition immediately after the purpose of execution, and later found that the reason for parentheses is not so. To understand the immediate execution of a function, you need to first understand some basic concepts of functions.


function declarations, function expressions, anonymous functions


function declaration: Functions fnname () {...}; Declare a function using the function keyword, and then specify a name for the functions, called the function declaration.


function expression var fnname = function () {...}; Declaring a function with the function keyword, but not naming it, and finally assigning an anonymous function to a variable called a function expression, is the most common form of function expression syntax.


Anonymous functions: Function () {}; Declaring a function using the functions keyword, but not naming the function, so called anonymous functions, anonymous functions are function expressions, anonymous functions have many functions, assigning a variable to create a function, assigning an event to an event handler or creating a closure, and so on.


The difference between a function declaration and a function expression is that the JavaScript engine will ' function declaration elevation ' (function declaration hoisting) Functions declaration on the current execution environment (scope) when parsing JavaScript code. The function expression must wait until the JAVASCIRTP engine executes to its row to parse the function expression from the top and the next line, and the function expression can be called immediately after it is appended with parentheses, and the function declaration cannot be called only in the form of FnName (). Here are two examples of the difference between the two.

Instance:

FnName (); function FnName () {...} Normally, because the function declaration is ' lifted ', the function call can be fnname () before the function declaration, Var fnname=function () {...} Error, variable fnname has not saved a reference to the function, the function call must be after the function expression var fnname=function () {alert (' Hello World ');} ();///The function expression is appended with parentheses, and when the JavaScript engine resolves here, it can immediately invoke function FnName () {alert (' Hello World ');}    ();//will not error, but the JavaScript engine only resolves function declarations, ignoring the following parentheses, function declarations are not called functions () {Console.log (' Hello world '); } ();//Syntax error, although the anonymous function is a function expression, but not an assignment operation,//So the JavaScript engine will start with the Function keyword as a declaration of functions, error: Requires the use of a functional name


After understanding some basic concepts of function, look back (function () {...}) () and (function () {...} ()) The two methods of immediately executing the function, initially I thought it was a parenthesis wrapped anonymous function, and the following parentheses immediately call the function, then do not know why the parentheses, and then understand that to the function body after the parentheses can be called immediately, then this function must be a function expression, not a function declaration.


Instance:

(function (a) {Console.log (a); Firebug output 123, using () operator}) (123);   (function (a) {Console.log (a);   Firebug output 1234, using () operator} (1234));!function (a) {Console.log (a); Firebug output 12345, use! operator} (12345);   +function (a) {Console.log (a); Firebug output 123456, using the + operator} (123456);   -function (a) {Console.log (a); Firebug output 1234567, using the-operator} (1234567);   var fn=function (a) {Console.log (a); Firebug output 12345678, using = operator} (12345678)

You can see the output and add it in front of the function! , +,-even a comma wait for the effect to be executed immediately after the function definition, and (),! , + 、-、 =, and so on, all function declarations are converted into function expressions, eliminating the ambiguity of the JavaScript engine recognition function expressions and function declarations, telling the JavaScript engine that this is a function expression, not a function declaration, you can add parentheses after it, and immediately execute the code of the function.


Parentheses are the safest thing to do, because! , +,-et operators also operate on the return values of functions, sometimes causing unnecessary hassles.


But what is the use of such a notation?


The concept of a private scope in JavaScript, if you declare some variables in a global or local scope on a multi-person project, may be overridden by someone else accidentally with a variable of the same name, depending on the nature of the scope chain of the JavaScript function, You can use this technique to mimic a private scope, use an anonymous function as a "container," inside the container to access external variables, and the external environment to access variables inside the container, so (function () {...}) () internally defined variables do not collide with external variables, commonly known as "anonymous wrapper" or "namespace."


jquery uses this method to wrap the jquery code in the (function (window,undefined) {...} jquery code ...} (window), when you invoke jquery code in the global scope, you can achieve the protection of jquery internal variables.


JS (function () {...}) () immediately execute function comprehension

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.