Articles in this series
What is the Event Loop? The event loop is the heart of Node.js's asynchronous architecture. It is a mechanism that allows Node.js to perform...
Node.js is known for its non-blocking, asynchronous nature, which is made possible by its event-driven architecture. At the heart of this architecture...
What is the Event Loop? Event loop is the core mechanism of javascript that allows it to perform non-blocking operations, even though it’s...
Ever wonder how JavaScript keeps our web apps running smoothly without turning user's computer into a digital hoarder’s house. All thanks to memory...
JavaScript is unique language, it doesn't use classical inheritance like languages such as Java or C++. Instead, it relies on prototypes. When i...
V8 engine is at the heart of executing JavaScript. It’s is an open-source, high-performance JavaScript and WebAssembly engine written in C++. It is...