Home Web Front-end JS Tutorial Detailed introduction to setTimeout in JS function

Detailed introduction to setTimeout in JS function

Jun 19, 2018 pm 05:29 PM
js settimeout

This article mainly introduces the execution process of js function from setTimeout. Friends who need it can refer to it

To be honest, when I wrote this article, I felt a little depressed because I was hit. Why ? Just because I like to mess around, I accidentally saw this "simple" function:

1

2

3

4

5

6

for (var i = 0; i < 5; i++) {

      setTimeout(function () {

        console.log(i)

      }, i * 1000);

    }

    console.log(i);

Copy after login

What? Isn't this the implementation method I saw a long time ago of printing a 5, then a 5, and then printing a 5 every second until 6 5s are printed? So here comes the question, what should I do if I want to print 0,1,2,3,4,5 in sequence? In fact, I knew these two methods before: one is like this:

1

2

3

4

5

6

7

8

9

function log(i){

setTimeout(function(){

console.log(i)

},i*1000)

};

for (var i = 0; i < 5; i++) {

      log(i) ;

    }

    console.log(i);

Copy after login

Another one is like this:

1

2

3

4

5

6

7

8

for(var i=0;i<5;i++){

(function(e){

setTimeout(function(){

console.log(e)

},i*1000);

})(i);

};

console.log(i);

Copy after login

I’m not afraid of jokes. Before this, I didn’t understand what these two functions were really used for. I just forced myself to remember this and modify it. It's okay, but not now. I have obsessive-compulsive disorder! So, I slowly analyzed it and found that the above code can be separated into this: when

i=0; the condition is met;

1

2

3

setTimeout(function(){

console.log(i)

},0*1000);

Copy after login

i=1; the condition is met;

1

2

3

setTimeout(function(){

console.log(i)

},1*1000);

Copy after login

When i=2; the condition is met;

1

2

3

setTimeout(function(){

console.log(i)

},2*1000);

Copy after login

When i=3; the condition is met;

1

2

3

setTimeout(function(){

console.log(i)

},3*1000);

Copy after login

i=4; the condition is met;

1

2

3

setTimeout(function(){

console.log(i)

},4*1000);

Copy after login

When i=5, the condition is not met, jump out of the loop, and then execute console.log(i) after the for loop, printing 5; finally, print 5 every second;

It’s really interesting, why is the console in setTimeout. Will log be executed after console.log outside the for loop? Until I realized the word => "queue", queues are divided into macro task queues (Macro Task) and micro task queues (Micro Task). In javascript:

macro-task includes: script (Overall code), setTimeout, setInterval, setImmediate, I/O, UI rendering.

Micro-task includes: process.nextTick, Promises, Object.observe, MutationObserver

The setTimeout of the above function belongs to the macro task

In js, the order of the event loop The first loop starts from script, and then the global context enters the function call stack. When a macro-task is encountered, it is handed over to the module that handles it. After processing, the callback function is put into the queue of the macro-task. When a micro-task is encountered, -task also puts its callback function into the micro-task queue. Until the function call stack is cleared and only the global execution context is left, all micro-tasks start to be executed. After all executable micro-tasks have been executed. The loop executes a task queue in the macro-task again, and then executes all micro-tasks after execution, and the loop continues like this.

This is why the console.log inside setTimeout will be executed after the console.log outside the for loop. In the function execution context, the seiTimeout function will be placed in the queue to process its macro-task. , so the function in setTimeout will not be executed during the loop, but will wait until all the overall code (non-queue) is finished running before the function in the queue is executed; writing this, I may be a little confused, in fact, I also A little confused, hahaha! !

In order to deepen your understanding, you can also try adding Promise to it, so here is this:

1

2

3

4

5

6

7

8

9

10

11

12

13

(function copy() {

  setTimeout(function() {console.log(4)}, 0);

  new Promise(function executor(resolve) {

    console.log(1);

    for( var i=0 ; i<10000 ; i++ ) {

      i == 9999 && resolve();

    }

    console.log(2);

  }).then(function() {

    console.log(5);

  });

  console.log(3);

})()

Copy after login

Explain it=>

1. First, the script task source Executed first, the global context is pushed onto the stack.

2. When the script task source code encounters setTimeout during execution, as a macro-task, it puts its callback function into its own queue.

3. The code of the script task source encounters a Promise instance during execution. The first parameter in the Promise constructor is that the current task will not be put into the queue if it is executed directly, so 1 is output at this time.

4. When encountering the resolve function in the for loop, the function is pushed into the stack and then popped out. At this time, the status of Promise becomes Fulfilled. The code then executes and encounters console.log(2), which outputs 2.

5. Then execute, the code encounters the then method, and its callback function is pushed onto the stack as a micro-task and enters the task queue of Promise. At this time, the function callback function in then of Promise and the function in setTimeout The callback functions have the same meaning and will be placed in their respective task queues.

They will not be executed until the function context, that is, all non-queue code in the script, has been executed. Moreover, the microtask queue has priority over the macrotask queue. Processing,

The overall sequence is: context non-queue code > microtask queue callback function code > macrotask queue callback function code

6. The code is then executed, and console is encountered at this time. log(3), output 3.

7. After output 3, the code of the first macrotask script is executed, and all micro-tasks in the queue begin to be executed. The then callback function is pushed onto the stack and then popped out. At this time, 5

8 is output. At this time, all micro-tasks are completed and the first cycle ends. The second round of loop starts from the task queue of setTimeout. The callback function of setTimeout is pushed into the stack and then popped out. At this time, 4 is output.

Finally, in order to deepen understanding, here is another piece of code:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

console.log(&#39;golb1&#39;);

setTimeout(function() {

  console.log(&#39;timeout1&#39;);

  new Promise(function(resolve) {

    console.log(&#39;timeout1_promise&#39;);

    resolve();

    setTimeout(function(){

      console.log(&#39;time_timeout&#39;)

    });  

  }).then(function() {

    console.log(&#39;timeout1_then&#39;)

  })

  setTimeout(function() {

   console.log(&#39;timeout1_timeout1&#39;);

  });

})

new Promise(function(resolve) {

  console.log(&#39;glob1_promise&#39;);

  resolve();

  setTimeout(function(){

     console.log(&#39;prp_timeout&#39;)

    });

}).then(function() { console.log(&#39;glob1_then&#39;) })

Copy after login

If your execution result is: golb1=>glob1_promise=>glob1_then=>timeout1=>timeout1_promise=> ;timeout1_then=>prp_timeout=>time_timeout=>timeout1_timeout1,

Maybe asynchronous queue is an introduction! ~~The above code looks a bit messy. It may be better to use asyns and await to transform it, but this is more or less the insight I got from setTimeout.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to implement the WeChat Jump Game using Three.js

Detailed introduction to http implementation in NODEJS

How to implement chat function using nodejs

How to use advanced functions in JavaScript

Using Angular5 Implementing server-side rendering practice

How to implement idle state reset in vuex

The above is the detailed content of Detailed introduction to setTimeout in JS function. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1657
14
PHP Tutorial
1257
29
C# Tutorial
1231
24
Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

How to use JS and Baidu Maps to implement map pan function How to use JS and Baidu Maps to implement map pan function Nov 21, 2023 am 10:00 AM

How to use JS and Baidu Map to implement map pan function Baidu Map is a widely used map service platform, which is often used in web development to display geographical information, positioning and other functions. This article will introduce how to use JS and Baidu Map API to implement the map pan function, and provide specific code examples. 1. Preparation Before using Baidu Map API, you first need to apply for a developer account on Baidu Map Open Platform (http://lbsyun.baidu.com/) and create an application. Creation completed

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

How to create a stock candlestick chart using PHP and JS How to create a stock candlestick chart using PHP and JS Dec 17, 2023 am 08:08 AM

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

How to use JS and Baidu Map to implement map click event processing function How to use JS and Baidu Map to implement map click event processing function Nov 21, 2023 am 11:11 AM

Overview of how to use JS and Baidu Maps to implement map click event processing: In web development, it is often necessary to use map functions to display geographical location and geographical information. Click event processing on the map is a commonly used and important part of the map function. This article will introduce how to use JS and Baidu Map API to implement the click event processing function of the map, and give specific code examples. Steps: Import the API file of Baidu Map. First, import the file of Baidu Map API in the HTML file. This can be achieved through the following code:

How to use JS and Baidu Maps to implement map heat map function How to use JS and Baidu Maps to implement map heat map function Nov 21, 2023 am 09:33 AM

How to use JS and Baidu Maps to implement the map heat map function Introduction: With the rapid development of the Internet and mobile devices, maps have become a common application scenario. As a visual display method, heat maps can help us understand the distribution of data more intuitively. This article will introduce how to use JS and Baidu Map API to implement the map heat map function, and provide specific code examples. Preparation work: Before starting, you need to prepare the following items: a Baidu developer account, create an application, and obtain the corresponding AP

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

The relationship between js and vue The relationship between js and vue Mar 11, 2024 pm 05:21 PM

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.

See all articles