GAGyandeep Aryaningyandeeparyan.hashnode.dev·Nov 1, 2023 · 3 min readbehind the scene of node.jsNode.js is a JavaScript runtime environment that allows you to execute JavaScript code outside of the browser. It is commonly used to build scalable web servers, APIs, and real-time applications. While Node.js provides an easy-to-use interface, under...00
GAGyandeep Aryaningyandeeparyan.hashnode.dev·Oct 26, 2023 · 2 min readinner engineering of browsersHow Browsers Work Browsers are complex applications that do much more than just displaying HTML pages. They are essentially a full-fledged operating system with many components working together to load and render web pages. When you load a web page ...00
GAGyandeep Aryaningyandeeparyan.hashnode.dev·Oct 14, 2023 · 2 min readInteresting internals of array in javascripthttps://www.youtube.com/watch?v=ZRS485LxX0s Arrays are a fundamental data structure in JavaScript. Behind the scenes, V8 - Google's JavaScript engine - optimizes arrays in two main ways: Contiguous arrays Holey arrays Contiguous Arrays For arra...01R