JavaScript variable declaration in advance

Source: Internet
Author: User

The JavaScript authoritative guide states that JavaScript variables are available before they are declared, and that this feature of JavaScript is informally called Declaration advance (hoisting), where all variables declared in the JavaScript function (but not related to assignment) are "Advance" to the top of the function. Let's look at the examples below:

Example 1:

    var aa = "Test";     function MyFunc () {        console.log (' AA value: ' +AA ');         var aa = "TEST";    }    MyFunc ();

The Call function MyFunc () Prints the result as undefined, because the function scope of the variable (but not the assignment) is "advanced" to the top of the function, so the local variable is always valid throughout the function body, the local variable AA will overwrite the global variable AA, so the printed result is Undefined, the operating procedure is equivalent to instance 2, as follows:

Example 2:

    var aa = "Test";     function MyFunc () {        var  AA;        Console.log (' AA value: ' +AA ');         = "TEST";    }    MyFunc ();

The results of the operation are as follows:

JavaScript variable declaration in advance

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.