search
HomeWeb Front-endJS TutorialAbout inference of variable scope of var declaration in JavaScript_javascript skills

1. Myth! Doubts caused by a piece of code
Please look at the following code:
Copy the code The code is as follows:

for(var i=0;iconsole.log(j "," k);
for(var j=0;jvar k = j 1;
}
}
console.log(i);

Output result:
undefined,undefined
3, 3
3,3
3
If you are working in C, Java and other languages, you may wonder why local variables like j and k can be accessed by code outside the scope?
If a variable declared with var in JavaScript can be regarded as a local variable, then the scope that can access the variable is the local scope of the variable. As in the above example, at the console.log line, there are still scopes of j and k, and outside the loop, there is still the scope of i. At this point, perhaps I can arbitrarily say that JavaScript has no real local scope. Really? No!

2. How to obtain the real local scope? A writing method caught my attention
You may have seen the source code of JQuery or the source code of Ext, and you may be a little familiar with the following writing method.
Copy code The code is as follows:

var a = 3,b=4;
var exports = (function() {
var a = 1,b=2;
return {a:a,b:b};
})();
console.log(" " a "," b);
console.log(exports.a "," exports.b);

Output results:
3,4
1,2
It is a very amazing discovery (actually it is not amazing, everyone knows it) that there is an independent scope inside the function, that is, the variables declared by var inside the function can only be used inside the function. Therefore, every master in each framework writes like this to prevent conflicts between local variables and external variables (outer local variables and global variables).
At this point, I retract the arbitrary inference in the first article and modify it:
JavaScript is bounded by functions, and each function has a local scope; any other block (including ordinary code blocks, for loops, If, while and other code blocks) do not have a local scope. Variables declared using var can directly pass through these code blocks and can be accessed by external code.


3. When is an error reported and when is it undefined? The declaration mechanism of var
Look at the code:
Copy the code The code is as follows:

console.log(a)

Output result:
ReferenceError: a is not defined
Output result:
undefined
Copy code The code is as follows:

var exports = (function() {
var a = 1,b=2;
return {a:a,b:b};
})();
console.log(a);

Output result:
ReferenceError: a is not defined
Conjecture:
Every time the JavaScript engine executes code, it will first scan all the code in the scope (the code inside the function in the scope will not be scanned), and record all the variables declared by var. Before the code is executed and assigned, the values ​​of these variables are undefined. After that, if you access a variable, you will first access the local variable. If there is no such local variable, you will access the local variable of the upper level (such as a closure, and the upper level creates an environment for the closure) until the complete global variable is accessed. If there is no such variable, an exception is thrown.


4. Digression: closure is asynchronous, variable values ​​are messed up! How to ensure the transfer of the current value of local variables in asynchronous situations?
Let’s talk about the code:
Copy the code The code is as follows:

for( var i=0;isetTimeout(function() {
console.log(i);
},1);
}

Output result:
3
3
3
Why? Because when the closure is executed asynchronously, i always accesses i in the outer scope. Since it is asynchronous, the loop has ended when the closure is executed, and i is already 3, so every time it is printed It's 3.
So how to solve this problem? We need to convert i into a local variable.
Well, someone has this way of writing:
Copy the code The code is as follows:

for(var i=0;ivar j = i;
setTimeout(function() {
console.log(j);
},1);
}

Output result:
2
2
2
Why?
Actually, as explained before, the scopes of j and i are actually the same. They are all outer local variables. When the loop execution is completed in an asynchronous situation, j is 2 (i is one less than i);
What should we do? (Please imagine an advertisement, (⊙v⊙)).
As we all know, parameters in a function are also considered local variables of the function. So here is a way to convert local variables into actual parameters of the function, thus achieving the effect of value transfer.
Copy code The code is as follows:

for(var i=0;isetTimeout((
function(j){
return function() {
console.log(j);
}
})(i)
, 1);
}

Output
0
1
2
In fact, after saying so much, you will almost understand it after writing the code. Use this This anonymous function method eliminates the problem of variable changes in asynchronous situations, but this is a digression from this post.

Summary:
Um. I won’t write it anymore, I’m too lazy, I’ll find time to make it up one day. hey-hey.
In fact, these conclusions should be written in the RFC. But chewing on English documents. . . Forget it. . I deduced it myself. Haha, don’t laugh at the sight of it.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools