MAMohammad Asadinlogictech.hashnode.dev00Synchronous vs Asynchronous JavaScript3d ago · 8 min read · When people start learning JavaScript, one confusion appears again and again: “Why does JavaScript behave strangely when dealing with time, API calls, or delays?” The answer lies in understanding syJoin discussion
ABAlga Bigeshincodesage-ai.hashnode.dev00Designing Learning That Feels Personal: My Frontend Journey with CodeSageMar 23 · 5 min read · Designing Learning That Feels Personal: My Frontend Journey with CodeSage As the frontend developer of CodeSage, my goal was to create an interface that feels intuitive, engaging, and motivating — notJoin discussion
SAsubrata acharjeeinjavascript-vlog.hashnode.dev00Spread vs Rest Operators in JavaScriptMar 23 · 1 min read · In JavaScript, spread (...) and rest (...) operators look the same but are used in different contexts. Spread Operator (...) The spread operator is used to expand elements (like arrays or objects). CJoin discussion
HSHrishikesh Shanbhaginerror-handling-in-javascript-hrishikesh.hashnode.dev00Error Handling in JavaScriptMar 17 · 5 min read · Introduction Have you heard of Ariane 5 Flight 501 Failure incident, If not let me explain you in short, Aniane 5 Rocket Failed due to a single error of converting a 64 bit floating point number to a Join discussion
APAalam Patilinaalampatilblogs.hashnode.dev00NodeJs Event LoopMar 16 · 4 min read · Event Loop (4) the event loop is something like while (true) { run if (false) return } Javascript is not asynchronous,it it that LibUV library which provide async I/O along with event loop and threJoin discussion
HSHrishikesh Shanbhagintemplate-literals-in-javascript-hrishikesh.hashnode.dev00Template Literals in JavaScriptMar 16 · 5 min read · Problem with traditional string concatination Before understanding why there was a need to introduce template literals, we must understand what were the limitation in the traditional approach. The traJoin discussion
HSHrishikesh Shanbhaginvariables-and-datatypes-js-hrishikesh.hashnode.dev00Understanding Variables and Data Types in JavaScriptMar 15 · 7 min read · Introduction Programming is majorly about how we store, retrive and process the data. Understanding the variables and datatypes is the first building block of programming. Hence in the blog we will beJoin discussion
HSHrishikesh Shanbhaginjavascript-operators-hrishikesh.hashnode.dev00JavaScript OperatorsMar 15 · 5 min read · Introduction Whenever we are doing programming, the most fundamental concept we require is to do basic math operations. If I want to add two numbers how can I do it in JavaScript? To do such math operJoin discussion
MAMohammad Asadinlogictech.hashnode.dev00HTMLCollection vs NodeList in DOMMar 13 · 4 min read · When you start learning JavaScript and the DOM (Document Object Model), you will often hear two confusing terms: HTMLCollection NodeList At first glance, both look the same.They behave like arraysJoin discussion
MAMohammad Asadinlogictech.hashnode.dev00JavaScript Arrays 101Mar 11 · 5 min read · Introduction: A Relatable Problem First Imagine you want to store: A list of fruits 🍎🍌🍇 Marks of a student 📊 Daily tasks 📝 Something like this pretty straightforward. But now imagine a slighJoin discussion