blog-rajharsh.hashnode.devJavaScript Array Methods You Need to KnowArrays become truly powerful once you learn the built-in methods JavaScript gives you to work with them. Instead of writing manual loops for everything, you can use purpose-built methods that are shor2d ago·7 min read
blog-rajharsh.hashnode.devArrow Functions in JavaScript: Write Cleaner, Modern CodeAs you get comfortable with JavaScript functions, you will quickly come across a shorter, more modern way to write them — arrow functions. They were introduced in ES6 and have become a staple of moder2d ago·6 min read
blog-rajharsh.hashnode.devControl Flow in JavaScript: if-else and switch ExplainedEvery program you write needs to make decisions. Should this user see the dashboard or the login page? Is the score high enough to pass? What day of the week is it? Control flow is how you teach your 2d ago·6 min read
blog-rajharsh.hashnode.devVariables, Data Types, and Scope in JavaScriptEvery program needs to remember things — a user's name, their age, whether they are logged in or not. Variables are how JavaScript stores and manages that information. If you are just starting out, th2d ago·6 min read
blog-rajharsh.hashnode.devJavaScript Objects: Storing and Managing Structured DataYou already know how to store a single value in a variable. You know how to store a list of values in an array. But what if you want to store multiple pieces of information that all describe one thing2d ago·6 min read