bhavay.hashnode.devControl Flow in JavaScript: Understanding if, else, and switchIntroduction Programs are not very useful if they can only execute code in a straight line. Real applications constantly make decisions: Should a user be allowed to log in? Did the API return an err2d ago·5 min read
bhavay.hashnode.devUnderstanding JavaScript Operators from ScratchIntroduction When you start writing real JavaScript programs, you quickly realize that variables alone are not enough. You need operators to perform calculations, compare values, and make decisions. I5d ago·4 min read
bhavay.hashnode.devArray Methods You Must Know in JavaScriptIntroduction If you are working with JavaScript, arrays are unavoidable. Whether you are building a to-do list, filtering API data, or transforming user input, array methods will become part of your dFeb 27·5 min read
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"Feb 26·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. ManagingFeb 25·4 min read