Table of Contents
2. Further understanding
3. Gradually understand
4. In-depth understanding
Home Web Front-end JS Tutorial Introduction to JavaScript declaration hoisting (with examples)

Introduction to JavaScript declaration hoisting (with examples)

Mar 22, 2019 am 09:39 AM
javascript

This article brings you an introduction to JavaScript declaration improvement (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Javascript declaration promotion

Before analyzing declaration promotion, I think it is necessary to know two points:

1. Two ways for the engine to query variables

The way the engine queries variables can be divided into two ways: LHS and RHS. You can roughly understand the meaning through "L" and "R", which are the left and right sides of the assignment operation respectively. (It cannot just be understood as the left and right sides of "=", because there are many forms of assignment operations.)

Let me briefly talk about my understanding of these two query methods:
LHS: Assignment Who is the target of the operation? (Query variable)
RHS: Who is the source of the assignment operation. (Query the value of the variable)

This may be a little difficult to understand. For example:

function foo(a){
    //这里存在一个隐式变量分配,LHS查询变量a,并赋值2.
    //隐式a = 2;
    //左边LHS查询变量b,查询作用域中是否存在b这个变量。
    //右边RHS查询变量a的值,将a赋值给b。
    var b = a;
    //返回a,b是RHS查询变量a的值和变量b的值并使用。
    return a + b;
}
//左边LHS查询变量c,查询作用域中是否存在c这个变量。
//右边RHS引用函数foo,将2作为参数传进去。
var c = foo(2);
Copy after login

2. Exceptions

One thing to emphasize about exceptions must be in strict mode. . Because in non-strict mode, if the LHS query cannot find the queried variable in the top-level global scope, it will create a variable with that name and return it to the engine.

ReferenceError: Related to scope determination failure. (For example: the required variable cannot be found in the scope)
TypeError: The scope determination was successful, but the operation on the result is illegal or unreasonable. (For example: trying to make a function call on a non-function type value, or refer to a property in a null or undefined type value)

For example:

"strict"
function foo() {
    console.log(a) //undefined
    console.log(b) //ReferenceError
}
var a = 2;
Copy after login

Declaration promotion

1. Preliminary understanding

When writing JavaScript code, many times you will feel that the code will be executed from top to bottom. But when it comes to statement promotion, this idea will be broken.

For example:

a = 2;
var a;
console.log(a);

运行结果为: 2
Copy after login

If it is executed top-down according to common sense, then the expected result of a execution should be undefined, but why is it 2?
This is the result of statement promotion.

2. Further understanding

When you have a preliminary understanding of statement promotion, you encounter the following code:

console.log(a);
var a = 2;

运行结果为:undefined
Copy after login

After you have a preliminary understanding of statement promotion, you will naturally think that the statement is will be promoted, but when assigned when declaring, the value of the variable cannot be obtained.

In fact, the running steps of the above code can be broken down into:

var a; //声明提升
console.log(a); //打印a的值
a = 2; //对a进行赋值
Copy after login

It turns out that statement promotion is literal statement promotion, and the rest of the operations (such as assignment and other logic) are still in place. step.

Declare a function to perform corresponding operations, and you will get the result of function declaration promotion. It can be found from this: The declarations of variables and functions will be promoted and executed in front of other code.

3. Gradually understand

Through several experiments, we can gradually understand that in fact, declaration promotion means: The declaration of variables and functions will be promoted in other codes (current function domain).

At this point, some people will think that if it is a function expression, will it also be promoted?

The answer is: no. Moreover, even named function expressions cannot be used before the name identifier is assigned.

For example:

foo(); //TypeError
bar(); //ReferenceError
var foo = function bar(){};
Copy after login

The code is decomposed into:

var foo; //变量声明提升
foo(); //foo对undefined值进行函数调用导致非法操作,故TypeError
bar(); //bar函数并没有声明,故ReferenceError
foo = function bar(){}; //对foo进行赋值
Copy after login

So: Function expressions cannot be used before the name identifier is assigned a value.

Note: 1. Each scope will be promoted. (So the scope formed within the function will also have a promotion operation, and the promotion operation is limited to the current internal scope of the function)
2. When functions and variables are promoted, the function Prioritize promotion.
3. Function declarations inside a normal block are usually promoted to the top of the scope.

4. In-depth understanding

When reading "Javascript You Don't Know", in the process of learning let, you will find that there is an explanation: declarations using let will not Promoting within scope. The declaration does not exist until the declared code is run.

For example:

console.log(a);
let a = 2;

运行结果是:ReferenceError: Cannot access 'a' before initialization. //初始化前无法访问"a"
Copy after login

Then I went back to the code I ran before, replaced let with var, and the returned result was undefined.

Combining the two, plus reading, it took me two months to understand the article let, and I found that I have a newer understanding of whether let is improved.

The author divides js variables into three parts: Create (create), initialize (initialize) and assign (assign) .

The reason why the above operations have different responses does not mean that let is not created, but that there is an initialization process that is not executed. And using the variable before initialization will form a temporary dead zone.

After testing var, let and function, it can be concluded that:

The creation and initialization of var is promoted, and the assignment will not be promoted.

The creation of let is promoted, initialization and assignment will not be promoted.

The creation, initialization and assignment of functions will be promoted.

This article is all over here. For more other exciting content, you can pay attention to the JavaScript Tutorial Video column on the PHP Chinese website!

The above is the detailed content of Introduction to JavaScript declaration hoisting (with examples). 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

Video Face Swap

Video Face Swap

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

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)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

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

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles