JavaScript's Event Loop — Simple Guide (with SVG Timeline)
The event loop lets JavaScript handle async tasks on a single thread.
Example Code
console.log("Start");
setTimeout(() => {
console.log("Timeout");
}, 0);
Promise.resolve().then(() => {
console.log("Promise");
});
console.log("End");
Output: Start → End → Promise → Timeout
Visual Timeline (SVG)
Why this order?
StartandEndare synchronous → run immediately on the call stack.Promise.thenis a microtask → runs before macrotasks.setTimeoutcallback is a macrotask → runs after microtasks drain.
How did you like this post?
👍0
❤️0
🔥0
🤔0
😮0