The difference between local variable var and non-VAR in JavaScript global variables

Source: Internet
Author: User

One, the external is global, the internal is a local variable.

Two, plus Var is a local variable (within the method), without var as a global variable (once used within the method)

var golbe= "global"function  Test () {      var local= "local";     document.write (golbe);     document.write (local); }document.write (Golbe); document.write (local); </script>

In the above test method, when the Var of the local variable is removed, local becomes the global variable, but local is not used locally, then this local is not valid as a global.

To verify this, I commented out the only code inside the test method that uses the local variable. The discovery does not print out on the outside.

The difference between local variable var and non-VAR in JavaScript global variables

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.