ASAbhinav Singhinblog.imabhinav.dev·Jun 13, 2024 · 3 min readFunc Declaration vs Expression vs Statement vs Anonymous vs First ClassFunctions in programming are like recipes in cooking. They are sets of instructions that we can reuse whenever we need to perform a specific task. In JavaScript, functions are fundamental building blocks that allow us to organize code and make it reu...00
ASAbhinav Singhinblog.imabhinav.dev·Jun 11, 2024 · 4 min readA Local Storage for all websitesIn modern web development, managing data is crucial. Whether it's user preferences, session data, or caching, developers need a reliable way to store information client-side. Local Storage in JavaScript provides a simple yet powerful solution to this...00
ASAbhinav Singhinblog.imabhinav.dev·Jun 6, 2024 · 5 min readWhy is JavaScript not Interpreted?Hey there! Imagine you're building a LEGO set. You have the instructions and all the pieces, but you need to follow the steps one by one to create your awesome LEGO castle. JavaScript, a programming language used to make websites interactive and fun,...00
ASAbhinav Singhinblog.imabhinav.dev·Jun 2, 2024 · 5 min readDOM is HARD!DOM stands for Document Object Model. It's like a big family tree for a web page. When you look at a website, everything you see on the page is part of this family tree. Each element (like a picture, a paragraph of text, or a button) is a family memb...00
ASAbhinav Singhinblog.imabhinav.dev·Jun 1, 2024 · 3 min readDestructuring is Bad!Destructuring assignment in JavaScript has often been portrayed in a negative light, with some developers arguing that it leads to code that's harder to read and understand. But let's take a closer look at this controversial feature and uncover its t...00