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);
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;
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
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
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进行赋值
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(){};
The code is decomposed into:
var foo; //变量声明提升 foo(); //foo对undefined值进行函数调用导致非法操作,故TypeError bar(); //bar函数并没有声明,故ReferenceError foo = function bar(){}; //对foo进行赋值
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"
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!

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 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.

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.

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.

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.

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft