1. ScopeSimply put, scope refers to the area in a program where variables are defined, which determines the access rights of the currently executed code to the variables. In ES5, there are generally only two scope types:
After talking about the concept, let's look at the following code: var a = 100 function test(){ var b = a * 2 var a = 200 var c = a/2 console.log(b) console.log(c) } test() // What will be printed here? Analysis:
So it will print NaN, 100 In ES6, a new block scope is added In simple terms, the area within the curly braces // ES5 if(true) { var name = 'Nanjiu' } console.log(name) // Nanjiu // ES6 if(true) { let age = 18 } console.log(age) // This will report an error 2. Scope Chain When accessing a variable inside the executable code, it will first check whether the variable exists in the current scope. If it does, it will return immediately. If not, it will search in the parent scope... until it finds the global scope. We call this scope nesting mechanism 3. Lexical Scope
The so-called lexical scope is determined by where you write the variables and scopes when you write the code. That is, the lexical scope is a static scope, which is determined when you write the code. The scope of a function is determined by where it is declared, not where it is actually called. MDN defines closures as follows: A function is bundled with a reference to its surroundings (lexical environment) (or the function is surrounded by references). Such a combination is called In other words, closures allow you to access the scope of an outer function from within an inner function. In We can conclude that:
Let's look at the code first: var name = 'Front-end Nanjiu' function say() { console.log(name) } say() Analysis: The There is a sentence in the book "Javascript Definitive Guide": Strictly speaking, all But this is just a theoretical closure, which is different from what we usually use. The example above is just a simple closure. ECMAScript defines closures as follows:
Let's look at another piece of code from the JavaScript Definitive Guide: let scope = 'global scope' function checkscope(){ let scope = 'local scope' function f(){ return scope } return f } let s = checkscope() s() // What does this return? Many students may think it is
Basic rules of scope: 5. Application of closure
6. The flaws of closures
7. Frequently asked closure interview questionsvar arr = [] for(var i=0;i<3;i++){ arr[i] = function(){ console.log(i) } } arr[0]() // 3 arr[1]() // 3 arr[2]() // 3 // Here, i has become 3 during execution // Solve using closure var arr = [] for(var i=0;i<3;i++){ arr[i] = (function(i){ return function(){ console.log(i) } })(i) } arr[0]() // 0 arr[1]() // 1 arr[2]() // 2 This is the end of this article about Javascript scope and closure details. For more information about Javascript scope and closure, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of CSS counter related attributes learning
>>: Docker stop stops/remove deletes all containers
The first and most important step is how to insta...
Table of contents What is the Picker component Pr...
Preface This article introduces the fifth questio...
Today I experimented with the network settings un...
Today, after the game was restarted, I found that...
Specific method: First open the command prompt; T...
Table of contents 1. concat() 2. join() 3. push()...
1. Brief Introduction of Nginx Nginx is a free, o...
This article shares with you how to implement dra...
There are two ways to export csv in win10. The fi...
The previous article introduced two methods to ch...
1. When to execute setUp We all know that vue3 ca...
<iframe src=”you page's url” width=”100″ he...
1. Grid layout (grid): It divides the web page in...
This article shares the specific code of JavaScri...