understading-of-objects.hashnode.devUnderstanding Objects in JavaScriptAfter learning variables and arrays, the next important concept is objects.At first, objects may look confusing, but in reality they solve a very simple problem —how to store related information toget1d ago·3 min read
jsvaribles.hashnode.devUnderstanding Variables and Data Types in JavaScriptWhen you begin JavaScript, variables feel like a small topic.But very quickly you realize almost every line of code depends on them. Programs don’t work with fixed values. They work with data that kee1d ago·3 min read
condtionsinjs.hashnode.devControl Flow in JavaScript: If, Else, and Switch ExplainedIn programming, code doesn’t just run top to bottom blindly.Sometimes we need decisions. Like real life: If it’s raining → take umbrella If marks are high → celebrate If battery is low → charge pho2d ago·3 min read
arrowfunctionsimpleexplain.hashnode.devArrow Functions in JavaScript: A Simpler Way to Write FunctionsWhen you start JavaScript, you write functions in the normal way and everything feels fine.But after some time, you notice functions are everywhere — small helpers, callbacks, array methods, event han2d ago·3 min read
thepowerofarray.hashnode.devArray Methods You Must Know (JavaScript)When you start JavaScript, arrays look very simple.But after some time you realize most real work happens inside arrays — looping, transforming data, filtering values, calculating totals. And instead 2d ago·3 min read