Global variables and local variables in JS

Source: Internet
Author: User
Since JS uses only two scopes, it corresponds to both types of variables.

1: Global variables--global scope is accessible.

2: Local variable--can only be accessed at the current scope.

In JS, there is a special case, the variable declared within the scope of the function, not with the Var word, then the variable is a global variable.

Let's look at an example:

Summarize:

1: Within a subset scope is a variable that can access the parent scope (or the previous level), but the parent scope is a variable that cannot be accessed into a subset scope.

2: Variables that are not declared with VAR are global variables and are not recommended for use.

3: Variables are destroyed after they are out of scope, global variables are destroyed when the page is closed or the browser is closed, so use global variables as little as possible, which takes up memory space.


Global variables and local variables in JS

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.