ayushjjainn.hashnode.devJavascript Array Methods You Must KnowI was trying to get a specific part of an array to work with. Not the whole thing, just a portion. I used splice, logged the result, and it looked right. Then I logged the original array and it had ch5h ago·13 min read
ayushjjainn.hashnode.devJavaScript Arrays 101When I first started writing JavaScript, I was storing related values in separate variables. I had a project where I needed to track five student scores. So I wrote score1, score2, score3, score4, sco7h ago·8 min read
ayushjjainn.hashnode.devJavaScript Operators: The Basics You Need to KnowThe first time I tried to build something that actually made decisions, I wrote a condition to check if a user's score had hit a target. I typed score == "10" and it worked. Then I changed something s20h ago·9 min read
ayushjjainn.hashnode.devUnderstanding Variables and Data Types in JavaScriptThe first time I wrote JavaScript I just started typing values directly into functions. console.log("Ayush"). console.log(17). It worked fine and I didn't think much about it. Then I tried to use that21h ago·10 min read
ayushjjainn.hashnode.devCSS Selectors: Targeting Elements with PrecisionWhen I was first learning CSS, I tried to make one specific paragraph on my page look different. Just one. I wanted it bold with a slightly different color to make it stand out. So I wrote my CSS, refJan 27·14 min read