Macrotasks and Microtasks
About timer
Note:
About Promises
setTimeout(() => { console.log("timer"); setTimeout(() => { console.log("timeout timeout"); }, 0); new Promise(resolve => { console.log("settimeout Promise"); resolve(); }).then(() => { console.log("settimeout then"); }); }, 0); new Promise(resolve => { console.log("Promise"); resolve(); }).then(() => { console.log("then"); }); console.log("ssss"); Execution order: Promise=>ssss=>then=>timer=>settimeout Promise=>settimeout then=>timeout timeout DOM rendering tasks Browser rendering: CSS+DOM execution encounters JS and JS is executed first Task shared memoryTasks will not be executed simultaneously, but will be scheduled one by one. They share memory. Promise microtasks handle complex businessUsing promises can turn tasks into asynchronous tasks so that they do not affect the execution of synchronous tasks. This is the end of this article about JavaScript macro and micro tasks. For more relevant JavaScript macro and micro tasks, 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:
|
<<: Summary of basic usage of $ symbol in Linux
>>: Installation and configuration of mysql 8.0.15 under Centos7
This story starts with an unexpected discovery tod...
Table of contents Props comparison of class compo...
Preface This article summarizes some common MySQL...
It mainly shows how to configure X-Frame-Options,...
Cerebro is an evolution of the Elasticsearch Kopf...
Table of contents BOM (Browser Object Model) 1. W...
This article example shares the specific code of ...
This article example shares the specific code of ...
Table of contents render.js part create-context.j...
Table of contents Write in front Business code us...
Table of contents Tutorial Series 1. Introduction...
describe Returns the time interval between two da...
Table of contents 1. Job Execution Fault Toleranc...
Nowadays, tabs are widely used in web design, but...
1. The difference between the command > and &g...