SAShriyansh Agarwalinshriyanshagarwal.hashnode.dev·Apr 22 · 4 min readLinux Under the Hood: A Filesystem InvestigationMost beginners interact with Linux through commands, but the real power of Linux lies deeper in its filesystem. During my exploration, I focused on understanding how Linux exposes its internal working00
SAShriyansh Agarwalinshriyanshagarwal.hashnode.dev·Mar 15 · 3 min readJavaScript Arrow Functions Explained for BeginnersIntroduction Sometimes the traditional functions require more syntax than necessary. Example: function add(a, b) { return a + b; } To solve this problem modern JavaScript introduced arrow functions00
SAShriyansh Agarwalinshriyanshagarwal.hashnode.dev·Mar 15 · 5 min readJavaScript Variables for Beginners: var, let, const and Data Types ExplainedIntroduction Imagine if you are writing a program manipulating data and you don't have a container to hold the values. How chaotic would it be, everything will have to be static since there is no cont00
SAShriyansh Agarwalinshriyanshagarwal.hashnode.dev·Mar 15 · 4 min readJavaScript Arrays Explained: A Beginner’s Guide with ExamplesIntroduction let fruit1 = "Apple"; let fruit2 = "Banana"; let fruit3 = "Mango"; let fruit4 = "Orange"; What can you observe from the above code Too many variables Hard to manage Hard to loop throu00
SAShriyansh Agarwalinshriyanshagarwal.hashnode.dev·Mar 15 · 3 min readJavaScript Functions Explained: Function Declarations vs Function ExpressionsWhat Are Functions? A function is a reusable block of code that performs a specific task. Instead of writing the same logic multiple times, we place that logic inside a function and call it whenever w00