© 2023 Hashnode
#event-loop
Introduction The "event loop" in JavaScript is a crucial mechanism that enables the handling of asynchronous operations efficiently. In this article, we are going to learn how the "event loop" continu…
Hey developers! Have you ever heard of the event loop and web API in JavaScript? 🤔 Understanding how the event loop and web API work in JavaScript are crucial for writing performant and responsive …
Introduction The JavaScript Runtime Environment serves as the infrastructure where JavaScript code runs and interacts with its surroundings. It encompasses a collection of components and mechanisms th…
The Event Loop in a Kitchen JavaScript is a single-threaded language, which means that it can only execute one task at a time. However, it is possible to run asynchronous code using something called t…
You must have heard that Javascript is a single-threaded non-blocking asynchronous concurrent language. Today we will find out what it actually means. First, let us understand Why do we call Javascri…
Node.js is a popular runtime environment that uses an event-driven, non-blocking I/O model. At the core of this model is the event loop, which is responsible for handling incoming requests and executi…
JavaScript is a powerful language that is used mainly in web programming. It can be very confusing for people who are just starting to learn. Many concepts in JavaScript can be very confusing and hard…
This blog is all about JS event loop: The JavaScript event loop is a key part of how JavaScript handles asynchronous code. In JavaScript, asynchronous code is often handled using callbacks, promises, and async/await. When you write asynchro…
Today I got to know about the event loop which defines the async nature of javascript. It is a logical flow of the program which executes parallelly such that it does not block the execution of the sy…
Overview If you are an aspiring JavaScript developer, you will likely be asked whether JavaScript is synchronous or asynchronous. And when you look around for the answers, you might get mixed answers …