JS mimic block-level scope

Source: Internet
Author: User

        var  5 ;         var   i;        alert (i);

When a variable is declared assigned, if it is declared again, it will not change the value after the last assignment, so the value of I is still 5, only after the value is re-assigned, such as:

        var 5 ;         var 6 ;        alert (i);

I now the value is 6;

There is no block-level scope in JS, if you want the effect of block-level scope, you can imitate, such as:

(function () {            for (var05; i++) {             }        }) ();         // Error

This method can be understood to put block-level scopes in an anonymous function, so the variables declared in the anonymous function are automatically cleaned up after the execution of the function is completed. In addition, this approach reduces the memory problems that are used by closures because there is no reference to the anonymous function being executed.

JS mimic block-level scope

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.