Pradeep Thapapradeepwrites.hashnode.dev·Sep 28, 2024Understanding the Event Loop: The Hidden Mechanism Behind JavaScript's MagicJavaScript is often described as a single-threaded language, but it manages to handle tasks like fetching data from servers, updating the UI, and responding to user events seamlessly without blocking or freezing. This is made possible by a magical co...DiscussJavaScript
Borhan Uddincodernex.hashnode.dev·Sep 26, 2024Async/Await vs Promises: How to Handle Asynchronous JavaScriptIntroduction: JavaScript is asynchronous, which means certain actions (like fetching data) don’t block the rest of your code. Promises and async/await help manage these non-blocking actions. Working with Promises: A promise is an object that represen...Discusspromises
kaverappa c ktimeflag.hashnode.dev·Sep 23, 2024🚀Mastering JavaScript: The Ultimate Guide to Structuring Your Code"The strength of JavaScript lies in its flexibility—mastering its structure is mastering its potential." JavaScript has evolved significantly over the years, and so has the way developers structure their code. Organizing code effectively ensures ma...Discuss#JavaScriptStructures
Snehangshu Bhattacharyablogs.snehangshu.dev·Sep 21, 2024Python Multitasking: Key Practices and ChallengesWhen I first encountered the Python language, I was amazed by what you could do with so little code, and it has been one of my favourite programming languages since. Some time ago, I faced a problem where I was trying to create something like a web s...Discuss·77 readsgreenlets
Bodheeshbodheesh.hashnode.dev·Sep 20, 2024Node.js Interview Guide: Part 2Fundamentals and Asynchronous Programming Introduction Welcome to the first part of our comprehensive Node.js interview guide! Whether you're preparing for an interview or just want to brush up on your Node.js knowledge, this series will cover essent...Discuss #Node.jsInterviewQuestions
Jaydev Jadavtechjaydev.hashnode.dev·Aug 27, 2024Mastering Promises: How to Use Promises for Better Asynchronous ProgrammingAs web developers, we all strive to simplify asynchronous code and make it more readable. However, we often find it challenging and constantly ask ourselves how to achieve this. The answer lies in mastering Promises. This blog will explore how to use...Discuss·29 readsJavascriptpromises
Mohtasim Ahmedeftythoughts.hashnode.dev·Aug 25, 2024Asynchronous Javascript - Callbacks, Promises, Async-Await | (A detailed overview)First of all, we need to know about Asynchronous Javascript and Synchronous Javascript. Javascript is a single-threaded programming language. In simple words, JavaScript can do one thing at a time. And javascript runs codes step by step (one after an...Discusssynchronous
Bodheeshbodheesh.hashnode.dev·Aug 21, 2024Top Node.js Interview Questions and Answers - Part 1As Node.js continues to grow in popularity, it's becoming increasingly important for developers to be well-versed in its fundamentals. Whether you're preparing for a job interview or simply looking to brush up on your knowledge, this series will cove...Discuss·75 readsNode.js
Jobin Mathewjobin-mathew.hashnode.dev·Aug 20, 2024A Beginner's Guide to Asynchronous Programming in Node.js 👨💻Introduction: Welcome to the Asynchronous World of Node.js! 🚀 If you're just starting with Node.js, you've probably heard terms like callbacks, promises, and async/await thrown around a lot. These are key concepts that allow Node.js to handle multip...DiscussNode.js
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·Aug 13, 2024Today, I Deepened My Understanding of the fetch FunctionHey folks! Today, I delved into something that's been a part of my coding life for a while, but I never really stopped to appreciate its inner workings—the fetch function. It's a crucial tool, especially in web development, where we're constantly dea...Discuss·10 likes·26 readsJavascript Basicsfetch API