YAYashika Agrawalinyashika29.hashnode.dev·Apr 27 · 4 min readSynchronous vs Asynchronous JavaScriptWhat does synchronous code means? Before jumping into understanding asynchronous programming, let's first deepen our understanding of what synchronous programming is? So let's suppose you have a code 00
YAYashika Agrawalinyashika29.hashnode.dev·Apr 22 · 6 min readI explored Linux for the first time and here’s what I discoveredI explored Linux for the first time today. Instead of focusing on commands, I tried to understand how Linux is structured internally. I wanted to keep this blog as raw as possible — more like personal00
YAYashika Agrawalinyashika29.hashnode.dev·Apr 3 · 8 min readArray Flatten in JavaScriptYou’re working with an API response, everything looks fine… until it doesn’t. Instead of a clean list, you get something like this: const data = [1, [2, 3], [4, [5, 6]]]; Now you just want: [1, 2, 3,00
YAYashika Agrawalinyashika29.hashnode.dev·Mar 15 · 4 min readJavaScript Operators: The Basics You Need to KnowWhat Are Operators? Operators are symbols that perform operations on values. For example: 5 + 3 Here: 5 and 3 → operands + → operator The operator tells JavaScript what action to perform. JavaScr00
YAYashika Agrawalinyashika29.hashnode.dev·Mar 15 · 3 min readFunction Declaration vs Function Expression: What’s the Difference?What Are Functions and Why Do We Need Them? Imagine you need to add two numbers multiple times in your program. Without a function, you might repeat the same code again and again. const result1 = 5 + 00