JJJainam Jainingit-basics-as-beginners.hashnode.dev00Exploring the Linux File SystemApr 22 · 5 min read · When I first started using Linux, I thought the main skill was learning commands.ls, cd, mkdir — I assumed that was the core. But once I actually explored the file system, something clicked. Linux is Join discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 15 · 3 min read · As programs grow larger, managing code becomes difficult if everything is written in a single place. Developers solve this by organizing code using Object-Oriented Programming, usually called OOP. OOPJoin discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Objects in JavaScriptMar 15 · 3 min read · When programs become larger, we often need to store related information together. For example, imagine storing information about a person: name age city If we store each value in separate variablJoin discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Functions in JavaScriptMar 15 · 3 min read · When writing programs, we often repeat the same logic multiple times. Instead of writing the same code again and again, programming languages allow us to group instructions together into functions. A Join discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding this, call(), apply(), and bind() in JavaScriptMar 15 · 3 min read · When learning JavaScript, one concept that often causes confusion is the keyword this. At first it looks strange, but the idea behind it is actually simple. A good way to think about this is: this refJoin discussion