search
HomeWeb Front-endJS TutorialDetailed explanation of examples of js event loop

Detailed explanation of examples of js event loop

Jun 26, 2017 am 09:17 AM
javascripteventcycle

I have read some event loop blogs before, but after not reading them for a while, I realized that I had forgotten them all, so I decided to write a blog to summarize them!

First of all, let’s explain what the event loop is:

As far as we know, the browser’s js is single-threaded, that is to say , at most only one code segment is executing at the same time, but the browser can handle asynchronous requests very well, so why? Let’s take a look at a picture first
Detailed explanation of examples of js event loop
We can see from the above picture that the js main thread has an execution stack, and all js code will run in the execution stack. During the execution of the code, if you encounter some asynchronous code (such as setTimeout, ajax, promise.then and user clicks, etc.), the browser will put these codes into a thread (here we call it a behind-the-scenes thread). Waiting does not block the execution of the main thread. The main thread continues to execute the remaining code in the stack. When the code in the background thread is ready (for example, the setTimeout time is up and the ajax request is responded to), the thread will process it. The callback function is placed in the task queue and waits for execution. When the main thread finishes executing all the code in the stack, it will check Task Queue to see if there is a task to be executed. If there is a task to be executed, then the task will be put into the execution stack for execution. If the current task queue is empty, it will continue to wait in a loop for the task to arrive. Therefore, this is called an event loop.

So, here comes the question. If there are many tasks in the task queue, which task should be executed first?

In fact (as shown in the picture above), js has two task queues, one is called Macrotask Queue (Task Queue), and the other is called Microtask Queue

  • The former is mainly used to carry out some relatively large-scale work, common ones include setTimeout, setInterval, user interaction operations, UI rendering, etc.

  • The latter is mainly used to carry out some relatively small-scale work, which is common There are Promise, process.nextTick(nodejs)

So, what are the specific differences between the two? Or, if two tasks appear at the same time, which one should be chosen?
In fact, what the event loop does is as follows:

  1. Check whether the Macrotask queue is empty. If not, proceed to the next step. If it is empty, jump to 3

  2. Take the first task from the Macrotask queue (the one with the longest time in the queue) and execute it in the execution stack (only one). After execution, go to the next step

  3. Check whether the Microtask queue is empty, if not, go to the next step, otherwise, jump to 1 (start a new event loop)

  4. Get from the Microtask queue The task at the head of the queue (with the longest time in the queue) goes into the event queue for execution. After execution, it jumps to 3

. Among them, the microtask task added during the execution of the code will be in the current It is executed within the event loop period, and the newly added macrotask task can only wait until the next event loop to execute (an event loop only executes one macrotask)
First, let’s look at a piece of code

console.log(1)
setTimeout(function() {
  //settimeout1
  console.log(2)
}, 0);
const intervalId = setInterval(function() {
  //setinterval1
  console.log(3)
}, 0)
setTimeout(function() {
  //settimeout2
  console.log(10)
  new Promise(function(resolve) {
    //promise1
    console.log(11)
    resolve()
  })
  .then(function() {
    console.log(12)
  })
  .then(function() {
    console.log(13)
    clearInterval(intervalId)
  })
}, 0);

//promise2
Promise.resolve()
  .then(function() {
    console.log(7)
  })
  .then(function() {
    console.log(8)
  })
console.log(9)

You What do you think the result should be?
The results I output in the node environment and chrome console are as follows:

1
9
7
8
2
3
10
11
12
13

In the above example
The first event loop:

  1. console.log(1) is executed, output 1

  2. settimeout1 is executed, and added to the macrotask queue

  3. setinterval1 is executed and added to the macrotask queue

  4. settimeout2 is executed and added to the macrotask queue

  5. promise2 is executed and its two then functions are added to the microtask Queue

  6. console.log(9) is executed and outputs 9

  7. According to the definition of the event loop, the new microtask task will be executed next , execute console.log(7) and console.log(8) in the order of entering the queue, output 7 and 8
    microtask queue is empty, return to the first step, enter the next event loop, at this time the macrotask queue For: settimeout1,setinterval1,settimeout2

The second event loop:

  1. Get the queue located in the macrotask queue The first task (settimeout1) is executed and the output 2
    microtask queue is empty. Go back to the first step and enter the next event loop. At this time, the macrotask queue is: setinterval1,settimeout2

The third event loop:

  1. Get the task at the head of the team (setinterval1) from the macrotask queue and execute it, output 3, and then generate a new The setinterval1 is added to the macrotask queue
    The microtask queue is empty, return to the first step and enter the next event loop. At this time, the macrotask queue is: settimeout2,setinterval1

Four event loops:

  1. Take the task at the head of the team (settimeout2) from the macrotask queue and execute it, output 10, and execute the function in new Promise (in new Promise The function is a synchronous operation, not an asynchronous operation), outputs 11, and adds its two then functions to the microtask queue

  2. From the microtask queue, take the task at the head of the queue and execute it until it is empty. Therefore, the two newly added microtask tasks are executed in order, outputting 12 and 13, and clearing setinterval1
    At this time, both the microtask queue and the macrotask queue are empty, and the browser will always check whether the queue is empty and wait for new The task is added to the queue.

Here, you may wonder, in the first loop, why isn't macrotask executed first? Because according to the process, shouldn't we first check whether the macrotask queue is empty, and then check the microtask queue?
Reason: Because the task running in the js main thread at the beginning is the macrotask task, and according to the process of the event loop, only one macrotask task will be executed in an event loop. Therefore, after executing the code of the main thread, it will go from Take the first task from the microtask queue and execute it.

Note:

When executing a microtask task, it will only enter the next event loop when the microtask queue is empty. Therefore, if it Continuously generating new microtask tasks will cause the main thread to be executing microtask tasks, and there is no way to execute macrotask tasks. In this way, we will not be able to perform UI rendering/IO operations/ajax requests. Therefore, we should avoid this situation. occur. In process.nexttick in nodejs, you can set the maximum number of calls to prevent blocking the main thread.

With this, we introduce a new problem, the timer problem. Is the timer real and reliable? For example, if I execute a command: setTimeout(task, 100), will it be executed exactly after 100 milliseconds? In fact, based on the above discussion, we can know that this is impossible.
I think everyone should know the reason, because after you execute setTimeout(task,100), you actually just ensure that the task will enter the macrotask queue after 100 milliseconds, but it does not mean that it can run immediately. Maybe The main thread is currently performing a time-consuming operation, or there may be many tasks in the microtask queue, so this may be the reason why everyone has been criticizing setTimeout, hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha

The above is just my personal view of the event loop Some opinions and references from other excellent articles

The above is the detailed content of Detailed explanation of examples of js event loop. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor