Javascript : Object, Prototype & Proto Chaining Understand with real world exampleFeb 23, 2025·10 min read
JavaScript Execution Context: The Hidden Engine Behind Your Code!Hello Coder! This blog is specially written to provide clarity on how your code works behind the scenes. In my opinion, when you know how your code works behind the scenes, you can predict what it will do before running it. Okay so let’s start 😄 var...Feb 28, 2025·5 min read
Mastering Serialization & Deserialization: A Deep Dive into Data TransformationFeb 11, 2025·2 min read
JavaScript Decision-Making Unraveled: A Deep Dive into Variables, Operators, and Control FlowFeb 10, 2025·6 min read
Naruto Uzumaki’s Journey Through JavaScript ArraysNaruto Uzumaki, the energetic ninja from Hidden Leaf Village, starts a new mission to learn JavaScript Array Methods. On the way, he meets friends, fights enemies, and improves his skills using these powerful methods or functions. A New Mission Begi...Feb 7, 2025·3 min read
CSS Basics: Inline, Internal, and External StylesCSS - Cascading StyleSheet , Cascade basic meaning is override( repaint ) on existing style. Have you think when you use paragraph tag and button in html file and open in browser by default color of paragraph is black and button background-color is g...Jan 26, 2025·4 min read
PRD : The Foundation of Salooon: Ideas, Features, and VisionDefination PRD - Product Requirement Document , it is a document that outline the niche , feature and fucntionality of a product . PRD clearly explain product goals it not go to code and technical design or implementaion. It’s like saying “we need a ...Jan 26, 2025·2 min read
From HTTP/1.1 to HTTP/2 and Beyond: The Evolution of the WebHey I am Vishal Kumar and this article is related to “How the web Evolute : From a single request and single response to single request and Multiplexing response“ . HTTP - HyperText Transfer Protocol These are basically a set of rules that point to o...Jan 25, 2025·7 min read
What is OOPS Conecept ?OOPS (Object-Oriented Programming) is a paradigm based on object .Yes, you can think of Object-Oriented Programming (OOP) as a set of guidelines or principles for writing code in a structured and organized manner. Objects contain both functions (or...Feb 26, 2024·3 min read
What is object literal ?In JavaScript, an object literal is a way to create an object by directly specifying its properties and values within curly braces {}. It's a simple and concise syntax for creating objects without needing to define a separate constructor function. He...Feb 25, 2024·1 min read