Back to All Topics
Node.js Updated 2026-04-01 50 Questions
Node.js Interview Questions
The Event Loop is a single-threaded loop that allows Node.js to perform non-blocking I/O operations. It offloads tasks to the system kernel whenever possible. It has 6 main phases: Timers, Pending Callbacks, Idle/Prepare, Poll, Check, and Close Callbacks.