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
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:
Check whether the Macrotask queue is empty. If not, proceed to the next step. If it is empty, jump to 3
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
Check whether the Microtask queue is empty, if not, go to the next step, otherwise, jump to 1 (start a new event loop)
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:
console.log(1) is executed, output 1
settimeout1 is executed, and added to the macrotask queue
-
setinterval1 is executed and added to the macrotask queue
settimeout2 is executed and added to the macrotask queue
promise2 is executed and its two then functions are added to the microtask Queue
console.log(9) is executed and outputs 9
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:
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:
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:
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
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!

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.

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.

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.

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.

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

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 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 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.


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 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor