'What is the difference between "event loop queue" and "job queue"?

I can not understand how the following code run. Why "1" is after "b" but "h" is after "3"? Should'n the order be: a, b, 1, 2, h, 3? Some articles said that the difference between "event loop queue" and "job queue" leads to the following output. But how? I have read the specification of ECMAScript 2015 - 8.4 Jobs and Job Queues, wanting to know how Promise'job works, but it makes me more confused. Can someone help me? Thank you!

var promise = new Promise(function(resolve, reject) {resolve(1)});
promise.then(function(resolve) {console.log(1)});
console.log('a');
promise.then(function(resolve) {console.log(2);});
setTimeout(function() {console.log('h')}, 0);
promise.then(function(resolve) {console.log(3)});
console.log('b');

// a
// b
// 1
// 2
// 3
// h

I know Promise is asynchronous, but the callback of setTimeout(..) asynchronous operation is always after Promise's asynchronous operation. Why?



Solution 1:[1]

Why "1" is after "b"?

The promise specification states that all promise .then() handlers must be called asynchronously after the call stack has emptied. Thus, both a and b, which are executed synchronously on the call stack will execute before any .then() handlers so 1 will always be after a and b.

Some interesting reading:

  1. Tasks, microtasks, queues and schedules.
  2. What is the order of execution in JavaScript promises?
  3. Writing a JavaScript framework - Execution timing, beyond setTimeout.

There's some good advice here in the thread "Promises wiggle their way between nextTick and setImmediate":

I would not recommend relying on the exact execution order of non-chained events. If you want to control the execution order - rearrange the callbacks in a way so that the one that you want to be executed later depends on the one that you want to be executed earlier, or implement a queue (that does the same behind the hood).

In other words, if you depend upon a particular ordering of asynchronous events, then you should actually chain them rather than relying on unspecified scheduling in the implementation.

Solution 2:[2]

In HTML terms, the event loop for a page or set of pages from the same domain can have multiple task queues. Tasks from the same task source always go into the same queue, with the browser choosing which task queue to use next.

Tasks to run timer call backs come from the timer task source and go in the same queue. Let's call this queue task queue "A".

The ECMAscript 2015 (ES6) specification requires tasks to run Promise reaction callbacks to form their own job queue called "PromiseJobs". ECMAscript and HTML specifications do not use the same language, so let's notionally equate ECMA's "Promise Job queue" with HTML task queue "B" in the browser - at least a different queue to the one used by timers.

Theoretically a browser could choose tasks from either queue A or B to run, but in practice the promise task queue gets higher priority and will empty before a timer call back gets run.

This is why "h" gets logged last. Promise then calls on fulfilled promises place jobs in the promise queue, which get executed with higher priority than timer call backs. The promise queue only becomes empty after console.log(3) has been executed, which allows the timer call back to execute.


Advanced

ECMAScript guardians chose not to use HTML5 terminology or description of task queues in their specification because ECMAScript can run in more environments than just HTML browsers.

Native implementation of promise queues may use a "micro task" queue instead of a separate dedicated promise task queue. Micro queued jobs are simply run after the current script thread and any tasks previously added to the micro queue complete.

Detail of micro task queuing is not required to understand promises.

Promise polyfills for browsers which lack native support for promises (all versions of IE etc) may use timers and not behave in exactly the same way as native implementations when it comes to the order of promise reactions and timer call backs.

Solution 3:[3]

I found this one easy to understand for someone new to JS.

This is copy paste from @getify's book

to use a metaphor: the event loop queue is like an amusement park ride, where once you finish the ride, you have to go to the back of the line to ride again. But the Job queue is like finishing the ride, but then cutting in line and getting right back on.

event loop queue - for all async callbacks other than promises, h

job queue - for all async callbacks related to promises. 1, 2, 3

Sync - a, b

Solution 4:[4]

As of Es6, job queue runtime added to accommodate the promises. with new Promise() we handle async code natively. setTimeout is not part of javascript, it is part of the web api which is provided by the browser.

Now we have two queues. callback queue and job queue. Job queue is also called micro task queue.

The key thing is here, JOB QUEUE HAS HIGHER PRIORITY OVER CALLBACK QUEUE. so in your example, first synchronous code is executed.

 console.log('a');  // a
 console.log('b');  // b

then promises are sent to the job queue and setTimeout() is sent to the callback queue. Now event loop, checks the job queu first regardless how long is the setTimeout() is set for. since queue implements "first in first out" they are executed as they are ordered since they are just logging to the console.

promise.then(function(resolve) {console.log(1)}); // 1
promise.then(function(resolve) {console.log(2)}); // 2
promise.then(function(resolve) {console.log(3)}); // 3 

after job queue is cleared out, event loop checks the callback queue

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

Solution 5:[5]

ES6 has 2 queues

  1. CallBack queue
  2. Job queue (Micro-task queue)

Both setTimeout and a promise are async code.

In setTimeout we explicitly specify the function to be auto-run when the background web browser api work is finised (in setTimeout's case its the Timer feature of web browser api), once the timer has done its job it pushes the function onto the callback queue and has to wait until all the sync code of js has completed, thats why

console.log("a")
console.log("b")

gets done first

Now coming to the promise part, any promise in JS does 2 things

  1. Sets the background api feature
  2. returns a promise object

the .then() specifies which function to be run once the promise has been resolved , but not immediately

The function specified inside the .then() gets pushed inside the Job queue on task completion

Once all the sync code in JS is completed, the event loop checks the job queue first and then the callback queue So thats why 'h' is logged at the very end

Solution 6:[6]

In Javascript Runtime The Job Queue is created with Task Queue during the Java Script Runtime which is much similar to task queue but has priority over the task queue which means javascript event loop first look in to the job queue if there is any task in the job queue the event loop will check the stack if stack is empty it will push the task in the stack from job queue after that event loop check again job queue if job queue is empty now event loop check task queue if there is any task the task will be pushed to stack for execution. The job queue is added in Java Script Run time in the es6 for the execution of promises

for example :

var promise = new Promise((resolve, reject) => {
    setTimeout(() => {
        resolve('promise win')
    }, 4000)
})
promise.then((result) => {
    console.log(result)
})
setTimeout(() => {
    console.log('setTimeout win')
}, 4000)

Output:

promise win

setTimeout win

Explanation:

both the setTimeout and promise are executed asynchronously and both take same amount of time but promises are executed first then callback , this is because promise are move to job queue and setTimeout is moved to callBack queue from the Web Api which is basically create during javascript runtime to perform tasks asynchronously and so Job Queue has priority over the task queue

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ninjakannon
Solution 2
Solution 3
Solution 4 Yilmaz
Solution 5
Solution 6 Farhan Asghar