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 <p>After the code is run , 10 10s will be printed on the console. If modified to: </p><pre class="brush:php;toolbar:false">for (let i = 0; i <p>, after the code is run, 0-9 will be printed on the console.</p><p><strong>Understand const </strong></p><p>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. </p><p>For example: </p><pre class="brush:php;toolbar:false">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!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


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

SublimeText3 English version
Recommended: Win version, supports code prompts!

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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

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