惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
量子位
博客园 - 司徒正美
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
I
InfoQ
D
Docker
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
宝玉的分享
宝玉的分享
G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Microtasks: Why Promises Run First
Marsha Teo · 2026-04-23 · via DEV Community

This is the third article in a series on how JavaScript actually runs. You can read the full series here or on my website.


In the last article, we established that:

JavaScript execution cannot be interrupted.

Once a macrotask starts, nothing cuts in. Only after it completes does the runtime select the next macrotask from the queue.

But consider this:

setTimeout(() => console.log("timeout"), 0);

Promise.resolve().then(() => console.log("promise"));

console.log("sync done");

Enter fullscreen mode Exit fullscreen mode

The output is always:

sync done
promise
timeout

Enter fullscreen mode Exit fullscreen mode

Both setTimeout and Promise.then are asynchronous and both schedule work to run later. If macrotasks are chosen one at a time, and nothing interrupts them, then promises should behave like timers. But that's not the case. The promise runs first, every time. Why?

If our macrotask model of JavaScript were complete, this ordering would not be guaranteed. Something else must exist. Specifically, there is another category of work in JavaScript: microtasks.

They do not interrupt the current macrotask. And yet they run before the runtime selects the next macrotask. Before we define them fully, we should understand why such a mechanism is needed.


The Tempting but Incomplete Explanation

Many explanations jump immediately to:

“Promises use the microtask queue, which runs before the macrotask queue.”

That statement is technically correct. But it explains nothing. Why are there two queues? Why does one outrank the other?

If we stop here, microtasks feel arbitrary. Let's instead find out more.


Running the Experiments

You can run all code snippets in this series by pasting them into the browser console.

While some examples work in Node.js, others rely on browser APIs (like rendering or requestAnimationFrame), so the browser is the most reliable environment.


A Hypothesis: Promises Are Just Higher-Priority Tasks

A reasonable mental model is that microtasks are just higher-priority tasks. When we have timers and promises, timers go into one queue, promises go into another, and the promise queue is checked first.

Let's test this:

setTimeout(() => console.log("timeout"), 0);

Promise.resolve().then(() => {
  console.log("promise 1");
  Promise.resolve().then(() => {
    console.log("promise 2");
  });
});

console.log("sync done");

Enter fullscreen mode Exit fullscreen mode

If promises are merely higher-priority tasks, we may expect:

sync done
promise 1
timeout
promise 2

Enter fullscreen mode Exit fullscreen mode

After sync done, the runtime has at least two pending pieces of work: the timer callback and the first promise callback. Since promise callbacks have higher priority, the runtime chooses the promise first. Consequently, promise 1 runs before timeout.

When promise 1 runs, it schedules another promise callback: promise 2. At this point, the runtime could choose between the existing timer callback or the newly scheduled promise callback. If promise callbacks were just higher priority macrotasks, the runtime should be free to interleave them.

However, the actual output is:

sync done
promise 1
promise 2
timeout

Enter fullscreen mode Exit fullscreen mode

promise 2 runs immediately after promise 1, before the timeout is even considered.


The Rule That Must Exist

The only model consistent with this behavior is:

Once microtask execution begins, all microtasks must run to completion before the runtime considers another macrotask.

Promise callbacks are not independent tasks competing with timers. They are unfinished work from the current turn of execution. They are continuations and continuations must complete before control is returned to the runtime.


Reframing Microtasks Properly

A microtask is not a faster callback nor is it a convenience queue. Promise callbacks are the most common example of microtasks, but this mechanism also underlie async functions and MutationObserver callbacks. Broadly, a microtask is:

Work that must be completed before JavaScript yields control back to the runtime.

This is why:

  • microtasks run after the current macrotask finishes,
  • microtasks run before the runtime chooses another macrotask,
  • the runtime drains the microtask queue completely,
  • microtasks can schedule more microtasks,

They exist to preserve atomicity across asynchronous boundaries.


Why This Rule Must Exist

If microtasks were treated like ordinary macrotasks, promise chains could interleave with unrelated work. That would introduce subtle inconsistencies and expose partially completed state.

Consider this:

let state = {
  loading: true,
  data: null
};

Promise.resolve().then(() => {
  state.data = "result";
  state.loading = false;
});

Enter fullscreen mode Exit fullscreen mode

This callback represents a single logical transition where the data arrives and loading ends. From the programmer's perspective, these two assignments belong together.

If the runtime were allowed to pause this callback midway or run unrelated macrotasks before it completes, external code could observe:

{ loading: true, data: "result" }

Enter fullscreen mode Exit fullscreen mode

This is a partially completed update (data has arrived but loading is still true). JavaScript avoids this by enforcing:

Once the current macrotask finishes, the runtime runs all microtasks run before selecting another macrotask.

This ensures that promises are continuations of the current turn of execution. And these continuations must complete before control returns to the runtime. That guarantee makes promise chains predictable:

Promise.resolve()
  .then(() => step1())
  .then(() => step2());

Enter fullscreen mode Exit fullscreen mode

The first .then() callback is queued as a microtask. After the promise returned by step1() settles, the second callback is queued. A promise chain schedules its continuations incrementally, not all at once.

Yet because the runtime must drain the microtask queue completely before selecting another macrotask, these incrementally scheduled callbacks still run back-to-back, without unrelated timers or events cutting in between them. The continuation may be deferred but it is never fragmented.


The Draining Behavior

Microtasks are not executed one-by-one with runtime checks between them. They are drained in a loop:

while (microtask queue is not empty) {
  run next microtask
}

Enter fullscreen mode Exit fullscreen mode

That is why nested promises run immediately. That is why infinite promise loops freeze the page. Consider:

function loop() {
  Promise.resolve().then(loop);
}

setTimeout(() => console.log("timeout fired"), 0);

loop();

Enter fullscreen mode Exit fullscreen mode

If you run this, be prepared to close the page, since this experiment creates an infinite microtask loop.

The page would freeze and timeout fired is never logged since a new microtask is queued every time loop is called. The runtime is not allowed to proceed to another macrotask while microtasks remain. Microtasks are not candidates for task selection. They are executed automatically as part of finishing the current turn.


The JavaScript Turn Model

We can now describe a single turn of JavaScript execution:

  1. The runtime chooses a macrotask.
  2. JavaScript executes synchronously.
  3. Once the call stack is empty, the runtime drains the microtask queue.
  4. Only then can the runtime consider another macrotask.

This is the event loop from JavaScript's perspective. In later articles, we will extend this model to include rendering and the browser's frame lifecycle. loop.


The Mental Model to Keep

When debugging async behavior, ask:

  • Did we just finish a macrotask?
  • Are there microtasks pending?
  • Has the runtime been allowed to choose another macrotask yet?

If microtasks exist, the answer is always:

No, the runtime must wait.


What This Prepares Us For Next

If microtasks are mandatory continuations, then what exactly does await do?

Does it pause execution?
Does it create a new task?
Or does it quietly hook into this same microtask mechanism?

Understanding that requires looking at async functions more closely.

That is the subject of the next article.


This article was originally published on my website.