bhavay.hashnode.devUnderstanding Arrays in JavaScriptIntroduction When you start learning JavaScript, one problem appears very quickly: How do you store multiple values together? If you try storing them separately, it becomes messy. let fruit1 = "Apple"15h ago·4 min read
bhavay.hashnode.devUnderstanding Objects in JavaScriptIntroduction When learning JavaScript, you quickly realize that variables alone are not enough. Real applications deal with users, products, orders, settings, and many related pieces of data. Managing1d ago·4 min read
bhavay.hashnode.devVariables and Data Types in JavaScriptIntroduction If you're starting your JavaScript journey, variables and data types are the first real building blocks you must understand. Without them, you cannot store, manipulate, or process data. L1d ago·5 min read
bhavay.hashnode.devHow a Browser WorksIntroduction When we open a browser and type a website address, everything feels instant and simple.But behind that simple action, a lot of things happen very fast and very quietly. This blog will walk you through what actually happens after you type...Jan 28·4 min read
bhavay.hashnode.devEmmet for HTMLIntroduction If you are just starting with HTML, you probably noticed something very quickly:writing tags again and again feels slow and repetitive. You type <div>then </div>then inside it another tagand again closing itand again typing class names T...Jan 28·4 min read