What is the difference between var, let and const in JavaScript?
Difference: 1. Variables declared by var belong to function scope, while variables declared by let and const belong to block-level scope; 2. Variable promotion exists in var, but not in let and const; 3. Var variables can Repeated declaration, but in the same block-level scope, let variables cannot be redeclared, and const variables cannot be modified.
Recommended tutorial: "JavaScript Video Tutorial"
Declaring variables in JavaScript before the emergence of ES6 (ES2015) Only through the var keyword, function declaration is through the function keyword. After ES6, the declaration methods include var, let, const, function, class. This article mainly discusses the differences between var, let and const.
Understanding var
If you declare a variable using the keyword var, then the variable belongs to the current function scope. If the declaration occurs at the top level outside any function declaration, then this variable belongs to the global scope. For example:
var a = 1; //此处声明的变量a为全局变量 function foo(){ var a = 2;//此处声明的变量a为函数foo的局部变量 console.log(a);//2 } foo(); console.log(a);//1
If you omit var when declaring a variable, the variable will become a global variable. If the variable exists in the global scope, its value will be updated. For example:
var a = 1; //此处声明的变量a为全局变量 function foo(){ a = 2;//此处的变量a也是全局变量 console.log(a);//2 } foo(); console.log(a);//2
Note: Variables declared with var are subject to hoisting.
Understanding "Promotion"
Promotion means that no matter where var appears in a scope, this statement belongs to the entire current scope, everywhere in it Can be accessed. Note that only variable declarations will be promoted, not assignments to variables. As shown in the following example:
console.log(a);//undefined var a = 1;
This code segment has the same logic as the following code segment:
var a; console.log(a);//undefined a = 1;
And if an undeclared variable is operated, an error will be reported
console.log(b);//假设b未声明过,Uncaught ReferenceError: b is not defined
Understand let
The variables declared by let have the following characteristics:
The variables declared by let have the characteristics of block scope.
In the same block-level scope, variables cannot be declared repeatedly.
There is no variable promotion for variables declared by let. In other words, there is a temporary dead zone (TDZ) in the let declaration.
As shown in the following examples
let a = 1; console.log(a);//1 console.log(b);//Uncaught ReferenceError: b is not defined let b = 2;
function foo(){ let a = 1; let a = 2;//Uncaught SyntaxError: Identifier 'a' has already been declared }
The following is a classic example of var and let:
for (var i = 0; i < 10; i++) { setTimeout(function(){ console.log(i); },100) };
After the code is run , 10 10s will be printed on the console. If modified to:
for (let i = 0; i < 10; i++) { setTimeout(function(){ console.log(i); },100) };
, after the code is run, 0-9 will be printed on the console.
Understand const
The const declaration method, in addition to the above characteristics of let, also has a characteristic, that is, variables defined by const cannot be modified once defined, that is, what is declared by const is a constant.
For example:
const a = 1; console.log(a);//1 a = 2; console.log(a);//Uncaught TypeError: Assignment to constant variable.
However, it does not mean that the internal content of a variable declared by const is immutable, such as:
const obj = {a:1,b:2}; console.log(obj.a);//1 obj.a = 3; console.log(obj.a);//3
So to be precise, a const declaration creates a value A read-only reference. But that doesn't mean the value it holds is immutable, just that the variable identifier cannot be reassigned.
Summary of differences
-
Variables declared by var belong to the function scope, while variables declared by let and const belong to the block-level scope;
var has variable promotion phenomenon, but let and const do not have such phenomenon;
var variable can be declared repeatedly, but in the same block-level scope , let variables cannot be redeclared, and const variables cannot be modified.
For more programming-related knowledge, please visit: Programming Teaching! !
The above is the detailed content of What is the difference between var, let and const in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

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

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
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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

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

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

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

Detailed explanation and code examples of const in C In C language, the const keyword is used to define constants, which means that the value of the variable cannot be modified during program execution. The const keyword can be used to modify variables, function parameters, and function return values. This article will provide a detailed analysis of the use of the const keyword in C language and provide specific code examples. const modified variable When const is used to modify a variable, it means that the variable is a read-only variable and cannot be modified once it is assigned a value. For example: constint
