HRHarsh Rajinblog-rajharsh.hashnode.dev00JavaScript Array Methods You Need to KnowMar 4 · 7 min read · Arrays 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 shorJoin discussion
HRHarsh Rajinblog-rajharsh.hashnode.dev00Arrow Functions in JavaScript: Write Cleaner, Modern CodeMar 4 · 6 min read · As 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 moderJoin discussion
HRHarsh Rajinblog-rajharsh.hashnode.dev00Control Flow in JavaScript: if-else and switch ExplainedMar 4 · 6 min read · Every 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 Join discussion
HRHarsh Rajinblog-rajharsh.hashnode.dev00Variables, Data Types, and Scope in JavaScriptMar 4 · 6 min read · Every 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, thJoin discussion
HRHarsh Rajinblog-rajharsh.hashnode.dev00JavaScript Objects: Storing and Managing Structured DataMar 4 · 6 min read · You 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 thingJoin discussion