When it comes to the methods of declaring variables in Let's first talk about the differences between the three as a whole. Before introducing them in detail, the differences between var, let, and const are mainly analyzed from the following points:
As a global variable In However, variables declared with Variable Hoisting Variables declared with There is no variable promotion console.log(a) // undefinedvar a = 1console.log(b) // Cannot access 'b' before initializationlet b = 2console.log(c) // Cannot access 'c' before initializationconst c = 3console.log(a) // undefined var a = 1 console.log(b) // Cannot access 'b' before initialization let b = 2 console.log(c) // Cannot access 'c' before initialization const c = 3 Temporary dead zone There is no temporary dead zone There is a temporary dead zone In fact, this is the difference that is extended from the previous variable improvement. Because variables declared with Same as above: console.log(a) // undefined var a = 1 console.log(b) // Cannot access 'b' before initialization let b = 2 console.log(c) // Cannot access 'c' before initialization const c = 3 Block scope { var a = 2}console.log(a) // 2{ let b = 2}console.log(b) // Uncaught ReferenceError: b is not defined{ const c = 2}console.log(c) // Uncaught ReferenceError: c is not defined Duplicate Statement var a = 10 var a = 20 // 20 let b = 10 let b = 20 // Identifier 'b' has already been declared const c = 10 const c = 20 // Identifier 'c' has already been declared Modify declared variables (constants and variable declarations) var a = 10 a = 20 console.log(a) // 20 let b = 10 b = 20 console.log(b) // 20 const c = 10 c = 20 // Uncaught TypeError: Assignment to constant variable SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Website front-end performance optimization: JavaScript and CSS
>>: How to set MySQL foreign keys for beginners
I saw this question in the SQL training question ...
Table of contents Introduction to Samba Server Sa...
Use HTML to write a dynamic web clock. The code i...
1. Create a table CREATE TABLE `student` ( `id` i...
async function and await keyword in JS function h...
HTML5 is the next version of the HTML standard. M...
Table of contents Virtual DOM What is virtual dom...
Table of contents 1. typeof operator 2. instanceo...
CSS3 achieves cool 3D rotation perspective 3D ani...
Nginx (engine x) is a high-performance HTTP and r...
1. Prerequisites JDK has been installed echo $PAT...
This article describes the usage of MySQL stored ...
Preface MySQL 8.0.13 began to support index skip ...
Table of contents Require Implementation Code dat...
Table of contents Preface 1. The request content ...