Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 8, 2021 10:03 pm GMT

Javascript Event Loop for dummies

If someone who is not in the tech industry (a Muggle ) asks you what JavaScript is, could you define it? Well, you could say something like this:

"Javascript is an asynchronous, single-threaded and non-blocking language which uses some tools like a call stack, an event loop, a callback queue and some other APIs for concurrency".

But BRUUUH??!!

Confused GIF

That sounds like a dangerous spell in Harry Potter that would send your enemy straight to hell, doesn't it? But don't worry, I don't like when people use some complicated words to say barely nothing either. So let's go through each of those bizarre words.

  • Call stack: that is where our tasks (functions encountered in the code) are stacked. When we encounter a function, we push it to the stack and when we return from that function, we pop it off the stack (LIFO)
  • Single-threaded: in simple words, JavaScript can only do one thing at a time (one call stack). One element (function) in the stack is executed at a time.
  • Non-blocking: it means that whenever a "slow" task (I'll tell you what i mean by that later) is encountered in the call stack, it doesn't block the execution of the following tasks.
  • Asynchronous: The non-blocking behavior we explained above is done by using asynchronous callbacks which means that we run the "slow" task, give it a callback (an action to do when it's done), and run that callback later.
  • Callback queue: basically the place where the callbacks are queued (FIFO) waiting for their turn to be called by our MVP, the call stack
  • The famous Event Loop: that's what this whole article is about. Basically, it's the process of checking if the call stack is empty, and if so, taking off the first element (the first callback) in the queue (if it is not empty, of course ) and pushing it to the stack for it to be executed.

Easy Peasy, isn't it ?! NO?! Alright, I admit, that's a lot of words. So let's see a straightforward example to explain all of this.

Let's admit we're in a restaurant where some orders are already cooked and are quick to serve by the waitress, and some other are harder to make and are going to take time to be cooked by the chef (the "slow" tasks I was talking about ). We imagine that whatever the chef cooks, he puts it on his big table for the waitress to take it (It's my article, I do what i want, okay? )

Restaurant example image

Now we suppose that our waitress has 3 orders on her list. The quick orders are represented in white and the "slow" ones are represented in blue. They are stacked in her list.

Stacked functions GIF

The order on the top of the list (a hamburger) is then served to client 4 and get's removed from the list when it's done

Get hamburger GIF

We can notice that the next order is a slow order. So the waitress gives it to the chef who cooks it, and puts the bowl of cooked salad on his table, for the waitress to serve it later.

Get salad GIF

Meanwhile, the waitress takes care of the next order (a cup of juice) which is quick, and serves it to the client 4 (he's quite hungry )

Get juice GIF

When it's done, the waitress notices that her list is empty. So she checks the chef's table to see if there is any meal on it.

Check table GIF

If so, she takes that meal, and serves it the corresponding client (in this case, she serves a delicious bowl of salad the client 3)

Salad Bowl GIF

Her list being still empty, she checks the chef's table once again and see's that there's nothing on it. Thus, she can clock out and go home .

Second table check GIF

That's it!! That's how JavaScript works. You still can't make the connection between the example and the weird words above ? Alright, let's see, with the same animation, how the following code is going to be executed.

console.log("Hello!");setTimeout(function cb() {    console.log("Slow!!");}, 7000);console.log("Bye!");
Enter fullscreen mode Exit fullscreen mode

First of all, let's place our weird words to where they belong in the animation

Event loop image

Now let's see how it works

JS Process GIF

  • The main() function specified here is just the main thread of our code.
  • Each function is pushed to the stack when it is called, and popped off it when it returns something.
  • Our slow function (setTimeout()) is not handled by the javascript engine, but by some WebAPIs in the browser which will push the resulting callback into the queue when it's done.
  • Meanwhile, the functions in the stack continue to get executed. Whenever the stack is empty, the event loop checks if the callback queue is empty, takes the first element in it (our callback function) and push it to the call stack
  • The execution continues until there's nothing left in the call stack or in the callback queue.

See? It's not that complicated, right?

I hope this article helped you understand better the famous event loop and made you feel better with javascript. It is fundamental to understand these concepts in order to avoid some strange behaviors when you write asynchronous functions. If it still seems confusing to you, I recommend this excellent video of Philip Roberts explaining it:

Feel free to reach out to me if you have any questions:

Peace out!!


Original Link: https://dev.to/papidiagne30/javascript-event-loop-for-dummies-1bdi

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To