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
Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.