Before talking about AO and BO, we need to understand the concept of scope, which will make it easier to understand many things later, such as what this points to. ScopeScope is simply the scope in which variables, functions, and objects are available after they are defined. console.log(a) { var a=1; } function test(){ var b=2; } It can be seen that variable b cannot be used outside. It can be seen that the scope can protect data from being arbitrarily accessed and modified by the outside world. It can be easily seen that scopes can isolate each other's variables, that is, variables with the same name in different scopes will not conflict. The most important and commonly used scopes are global scope and function scope. However, after ES6, a block-level scope was introduced due to the emergence of let and const keywords. Global ScopeSimply put, the global scope means that all domains can access variables and method objects under the scope. var a="global1"; function test(){ b="Without var, it is implicitly converted to a global variable"; window.c="Directly setting variable c as window will also make it global"; var d="non-global scope"; } #The first step is to execute test() test() #This will define and assign values to variables within the method #Step 2 console.log(a) console.log(b) console.log(c) console.log(d) Generally speaking, the properties of window are global variables, and the window.c format actually treats c as a property of window. Please note that when declaring variables, do not use var. It is better to use var so that it will not be promoted to a global variable, causing data to be contaminated. In addition, the test method is also a global method. function test(){ var a = function(){ console.log("literal method") } b = function(){ console.log("method without var literal") } function test1(){ console.log("normal declaration method") } } This shows that the literal declaration method is similar to assigning a function to a variable and treating it as a variable. This was also demonstrated during precompilation. Function ScopeFunction scope is the opposite of global scope. It is not used everywhere, but only in a certain range. Generally, declared variables are only used inside the function. function test(){ var a="non-global scope"; console.log(a) } Now there is another problem. Variables within the function scope can be used in the global method. So can a function have a function scope generated by the function below it? And whether their variables can be used interchangeably? function test(){ var a="test method scope"; function test1(){ var b="test1 method scope"; console.log("value of a=",a); } # Call the function inside the function test1(); console.log("value of b=",b); } It can be seen here that the scope is layered. The inner scope can access the variables of the outer scope, but the outer scope cannot access the inner variables. if, switch, for, whileConditional statements and logical loops are not functions and do not behave like functions, nor do they create a new scope. **Variables whose blocks are defined will remain in the scope in which they exist. function test(a){ if(a>1){ var b=13; }else{ var b=1; } console.log(b); } So when using conditional statements and logical loops, try not to use them in the global scope. Because the variables in its method body will affect other data. Block ScopeThe appearance of block scope generally requires one of the two keywords let or const, otherwise the block scope will not exist. function test(a){ const b="23"; if (a>2){ const c=3 console.log("first person if---c-----",c) } if (a>1){ console.log("Second person if----b----",b) console.log("Second person if----c----",c) } } It can be seen that if there are keywords let and const, the scope of the variable is within the pair of curly braces in which it is declared. Therefore, the c variable in the first if cannot be obtained in the second if. Of course, it still follows that the inner scope can access the variables of the outer scope. To learn more about let and const, see the previous article: Address Scope ChainThis seemingly magical concept can be simply described as: if it exists within the scope, it will be used directly, and if it does not exist in the next level, it will be terminated when the global scope is found. var a=1 var b=3 function test(){ var a=2 console.log("value of a",a); console.log("value of b",b); } By the way, the search logic of the scope chain is actually the same as that of the prototype chain. We will continue to talk about it later. SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: css3 animation ball rolling js control animation pause
>>: Steps for importing tens of millions of data into MySQL using .Net Core
The css technique for changing the color of an im...
Table of contents 1. What is a subquery? 2. Where...
Table of contents Overview 1. RangeError 2. Refer...
1: Download MySql Official website download addre...
Preface If the query information comes from multi...
This article example shares the specific code of ...
Written in front In recent years, the live stream...
In the previous article, I introduced the detaile...
The code demonstrates horizontal merging: <!DO...
Example: We use the Python code loop_hello.py as ...
Table of contents 1. Nginx installation and start...
This CSS reset is modified based on Eric Meyers...
Recently, when upgrading the Zabbix database from...
Problem Description I created three virtual machi...
Table of contents Tomcat Download Tutorial Tomcat...