Progressive Web Apps (PWA)A progressive web app (PWA) is an app that's built using web platform technologies, but that provides a user experience like that of a platform-specific app. Like a website, a PWA can run on multiple platforms and devices from a single codebase. Like...Sep 5, 2025·9 min read
Mastering Data Structures : A Comprehensive Guide to Efficient CodingTopics - [Queue]- [Stack] Queue A Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of “First in, First out” (FIFO), where the first element added to the...Jul 25, 2024·7 min read
Mastering Data Structures : A Comprehensive Guide to Efficient CodingTopics: - [Array]- [ Linked List] -[Singly linked list] Array An array is a collection of similar types of data stored at contiguous memory locations. It is the simplest data structure where each data element can be accessed directly by only using it...Jul 21, 2024·10 min read
The "Scope Chain" in JavaScriptThe "scope chain" in JavaScript is a fundamental concept that determines the accessibility of variables and functions at different levels of code execution. Understanding the scope chain is crucial for grasping how JavaScript resolves variable refere...May 21, 2024·2 min read
Hoisting in JavaScriptThis is my second blog on the topic "Hoisting," which is a very interesting phenomenon in JS.JavaScript Hoisting refers to the process where the interpreter appears to move the declaration of functions, variables, classes, or imports to the top of th...May 14, 2024·2 min read