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...
Even if you've never heard of LibUV, , If you've worked with Node.js, you've already benefited from it. LibUV is the engine that powers Node.js'...
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...
Authentication and Authorisation are crucial for ensuring the security of applications and data. Three widely-used protocols for managing these...
JavaScript is unique language, it doesn't use classical inheritance like languages such as Java or C++. Instead, it relies on prototypes. When i...
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...