Prefacevar is a way to declare variables in ES5. I have always heard that when declaring variables with var, there is a problem of loop variables leaking to global variables, but I always can't figure out the impact of this "global". In addition, it is not clear when the output result is an increasing/decreasing value and when the output is the same value. Problem reproductionfor (var i = 1; i <= 5; i++) { setTimeout(function timer() { console.log(i) }, i * 1000) } Expected result: 12345 Print result: 66666 SolutionClosures for (var i = 1; i <= 5; i++) { (function (j) { setTimeout(function timer() { console.log(j) }, j * 1000) })(i) } setTimeout third parameter for (var i = 1; i <= 5; i++) { setTimeout( function timer(j) { console.log(j) }, i * 1000, i ) } Use let to define i for (let i = 1; i <= 5; i++) { setTimeout(function timer() { console.log(i) }, i * 1000) } letRegarding let, remember: the current i is only valid in this loop, and i in each loop is actually a new variable. The JavaScript engine will remember the value of the previous loop internally, and when initializing the variable i of this loop, it will perform calculations based on the previous loop. In addition, the for loop has another special feature, that is, the part that sets the loop variable is a parent scope, and the loop body is a separate child scope. for (let i = 0; i < 3; i++) { let i = 'abc'; console.log(i); } //abc //abc //abc SummarizeThis is the end of this article about how to solve the problems encountered when using var for loop. For more information about var for loop problems, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Explore the truth behind the reload process in Nginx
>>: Detailed explanation of the code for querying data of a certain day, month, or year in MySQL
illustrate: Today, when continuing the last offic...
Date-type single-row functions in MySQL: CURDATE(...
Link: https://qydev.weixin.qq.com/wiki/index.php?...
I have been studying and reviewing the developmen...
Table of contents 1. Write in front 2. Overlay to...
Table of contents 1. Introduction 1. Basic layout...
Table of contents Preface 1. Usage examples 2. Im...
Inject axios into Vue import axios from 'axio...
Overview The project was created successfully and...
After creating a container locally, you can creat...
Table of contents 1. Install Docker on CentOS 7.9...
This article shares the specific code of Vue.js f...
Table of contents 1.kvm deployment 1.1 kvm instal...
Table of contents The effect of mixed inheritance...
Preface Due to the needs of the company's bus...