Read more

Tasks, microtasks, queues and schedules - JakeArchibald.com

Henning Koch
June 28, 2016Software engineer at makandra GmbH

The way that Javascript schedules timeouts and promise callbacks is more complicated than you think. This can be the reason why callbacks are not executed in the order that they are queued.

Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

Please read this article!


This is an extract of the example in the article which demonstrates the execution order of tasks and microtasks.

console.log('script start');

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

Promise.resolve().then(function() {
  console.log('promise1');
}).then(function() {
  console.log('promise2');
});

console.log('script end');
// Task
script start
script end

// Microtask
promise1
promise2

// Task
setTimeout

The summary of the article says:

  • Tasks execute in order, and the browser may render between them

  • Microtasks execute in order, and are executed:

    • after every callback, as long as no other JavaScript is mid-execution
    • at the end of each task

Further resources:

Posted by Henning Koch to makandra dev (2016-06-28 19:23)