Home Web Front-end JS Tutorial Different understandings and analysis of JavaScript variable declaration and definition of variable var

Different understandings and analysis of JavaScript variable declaration and definition of variable var

Jul 18, 2017 am 10:57 AM
javascript js definition

Let’s look at a simple example to illustrate the problem

if (!("a" in window)) {
    var a = 1;
}
alert(a);
Copy after login

First of all, all global variables are attributes of window. The statement var a = 1; is equivalent to window.a = 1;

You can use the following method to detect whether global variables are declared

"Variable name" in window

Second, all variable declarations are in scope At the top of the scope, look at a similar example:

Copy code The code is as follows:

alert("a" in window);
var a;
Copy after login

At this time, although the statement is after alert, alert pops up is still true, this is because the JavaScript engine will first sweep all variable declarations, and then move these variable declarations to the top. The final code effect is like this:

var a;
alert("a" in window);
Copy after login

Third, you need to understand the question What it means is that the variable declaration is advanced, but the variable assignment is not, because this line of code includes both variable declaration and variable assignment.

You can split the statement into the following code:

var a;    //声明
a = 1;    //初始化赋值
Copy after login

So to sum up, when variable declaration and assignment are used together, the JavaScript engine will automatically divide it into two In order to declare the variable in advance, the assignment step is not advanced because it may affect the execution of the code and produce unpredictable results.

The code in the question is equivalent to:

var a;
if (!("a" in window)) {
    a = 1;
}
alert(a);
Copy after login

According to the analysis of the above example question, when declaring a variable, if it is a declared local variable, var must be added in front, if it is a global variable, You don’t need to add var (it’s best to limit the number of global variables and try to use local variables)

The following is a description of several features of using var

Use var statements more Not only is it legal to declare a variable twice, it also won't cause any errors.
If a repeatedly used statement has an initial value, then it only plays the role of an assignment statement.
If a reused statement does not have an initial value, it will not have any impact on the original variables.
Variables without var declaration exist as global variables; variables with var declaration are local variables, especially inside functions. Moreover, after testing, declaration with var is faster than without var. Set up as many local variables as possible in the function, so that it is safe and fast, and the variable operations are more reasonable. Logic errors will not be caused by random manipulation of global variables in the function.

When declaring an object, it is best to use the object's self-face method, which is much faster than the new method.

The variable name is chosen by yourself. In order to take care of semantics and specifications, the variable name may be slightly longer, but please note that the length of the variable name will also affect the execution speed of the code. Declarations with long variable names do not execute as quickly as short ones.

The title is as follows. The question is: What are the results of the two alerts?

<script
type="text/javascript">
    var a = 1;
    var a;
    alert(typeof a);
(function () {
        b = &#39;-----&#39;;
        var b;        
    })();
    alert( typeof b);
</script>
Copy after login

Run the code in Chrome, and the correct result of the code is 1.number 2.undefined. What is examined here is the concept of JavaScript variable declaration in advance.

We are looking at another example, such as the following:

test();
function test(){    
alert("Hello World!");
}
Copy after login

The program will not report an error, but the running result is: Hello World!. Principle: Before the computer starts executing the statement, it will first search for all function definitions and then save the related functions.
Question 1:
var a = 1;
var a;
Declaring variable a on line 2 is equivalent to declaring a at the top, and then the first sentence is to redeclare a, and then Assign a value of 1. So typeof a is number
Question 2:
b = '-----';
var b;
Analysis of the second question: b='-----', program First, it will check whether there is a declaration of variable b in the context. If so, it will directly assign the value to '-----'. But alert(typeof b); is outside the function and outputs the global variable b, all of which are undefined.
Please note: The assignment operation to variables is not advanced.

The above is the detailed content of Different understandings and analysis of JavaScript variable declaration and definition of variable var. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

What is Discuz? Definition and function introduction of Discuz What is Discuz? Definition and function introduction of Discuz Mar 03, 2024 am 10:33 AM

"Exploring Discuz: Definition, Functions and Code Examples" With the rapid development of the Internet, community forums have become an important platform for people to obtain information and exchange opinions. Among the many community forum systems, Discuz, as a well-known open source forum software in China, is favored by the majority of website developers and administrators. So, what is Discuz? What functions does it have, and how can it help our website? This article will introduce Discuz in detail and attach specific code examples to help readers learn more about it.

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

The definition and function of MySQL composite primary key The definition and function of MySQL composite primary key Mar 15, 2024 pm 05:18 PM

The composite primary key in MySQL refers to the primary key composed of multiple fields in the table, which is used to uniquely identify each record. Unlike a single primary key, a composite primary key is formed by combining the values ​​of multiple fields. When creating a table, you can define a composite primary key by specifying multiple fields as primary keys. In order to demonstrate the definition and function of composite primary keys, we first create a table named users, which contains three fields: id, username and email, where id is an auto-incrementing primary key and user

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Introduction to PHP interfaces and how to define them Introduction to PHP interfaces and how to define them Mar 23, 2024 am 09:00 AM

Introduction to PHP interface and how it is defined. PHP is an open source scripting language widely used in Web development. It is flexible, simple, and powerful. In PHP, an interface is a tool that defines common methods between multiple classes, achieving polymorphism and making code more flexible and reusable. This article will introduce the concept of PHP interfaces and how to define them, and provide specific code examples to demonstrate their usage. 1. PHP interface concept Interface plays an important role in object-oriented programming, defining the class application

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

The relationship between js and vue The relationship between js and vue Mar 11, 2024 pm 05:21 PM

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.

See all articles