7.31 sign In, JS Global preprocessing note

Source: Internet
Author: User

JS parsing and execution process:

First, the overall:

1. pretreatment Stage:

1, lexicalenviroment = = = Window {1, pre-processing var |    2, function xxx//Pre-processing declaration functions } Note: A function created without preprocessing a function expression : var g = function ();
2, ECMA-262 variableenvironment

                

           2, the implementation phase:

    Console.log (a);                                    4, the input is the preprocessing phase of function A{return 6;}    function A () {     return  document.documentElement.OffsetWidth;     1. First preprocess function A ()    }    function A () {     return  6;                                        2. Overwrite function A ()    }     var a = 3;                                        3, VAR declaration variable priority is lower than function, so invalid     a = 3;                                            4, expression A = 3, is the execution phase, covering for a = 3;    Console.log (a);                                    5. The output sequence executes a = 3;

  

Second, function:

7.31 sign In, JS Global preprocessing note

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.