Musab Rayantechblogsbymusab.hashnode.dev·3 hours agoUnderstanding Asynchronous JavaScript: A Simple Guide with Real-Life Analogies 👨💻JavaScript is designed to be single-threaded, meaning it can only execute one task at a time. Imagine you're in a kitchen with only one chef (JavaScript). The chef can only prepare one dish at a time, but sometimes tasks like boiling water or waiting...DiscussJavaScript
Aditya Dubeyadityadubey.cloud·Sep 2, 2024Techniques for Faster API Calls for DynamoDB in PythonIntroduction Github: https://github.com/adityawdubey/Techniques-for-Faster-API-Calls-for-DynamoDB-in-Python With databases, how fast data operations work is important to overall performance — a point which matters even more when using cloud-based dat...Discuss·11 likes·128 readsPython
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
Godspower Amanzegreekleonard.hashnode.dev·Aug 14, 2024JavaScript PromiseMuch like its literal meaning in simple English, a Promise (in JavaScript) represents a commitment that an action will be carried out at a later time. In this piece, we will explore the basic concepts of the JavaScript Promise object, its importanc...Discuss·3 likesES6
Gondi Bharadhwaj Reddybharadhwaj.hashnode.dev·Jul 17, 2024Understanding Synchronous vs Asynchronous in Node.js: A Beginner's GuideNode.js is a powerful and popular runtime environment that allows developers to run JavaScript on the server side. One of its key features is its ability to handle various asynchronous operations, which can greatly improve the performance and respons...Discuss·1 likewhat is sync
Hankyu Kimhankyukim.hashnode.dev·Jun 10, 2024Sync VS AsyncSynchronous The term "synchronous" means things happening at the same time. Imagine a scenario where you send a message to a server saying, "I just got connected." The server takes a moment and then responds, "Oh, really? You just got connected! I'll...Discusssynchronous
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·May 25, 2024JavaScript Execution Context: Everything You Need to KnowJavaScript is a synchronous, single-threaded language. This might sound complex, but let's break it down to understand what it really means and how it affects the way JavaScript executes code. JavaScript is a synchronous, single-threaded language. Th...Discuss·10 likes·31 readsJavascript BasicsJavaScript
Gaurav Yadavgauravblogss.hashnode.dev·May 23, 2024The JavaScript Paradox: Synchronously Asynchronous"JavaScript is a synchronous, single-threaded language" - a line we have heard numerous times. Let's dive deep into it and understand the duality of JavaScript where it inherently is a synchronous language but can perform operations asynchronously as...Discuss·10 likesJavaScript
Gaurav Aggarwalaggarwalgaurav1012.hashnode.dev·Apr 20, 2024Asynchronous JavaScriptAsynchronous programming is an essential concept in JavaScript that allows your code to run in the background without blocking the execution of other code. Developers can create more efficient and responsive applications by using features like callba...Discussasynchronous
Himanshu Bhartihimanshubharti.hashnode.dev·Apr 5, 2024Explain Synchronous and Asynchronous Transmission with examples. Mention advantages, disadvantages and difference between them.Synchronous Transmission : In synchronous transmission data is sent in form of blocks or frames. Synchronous transmission is the full-duplex type transmission. Synchronization between sender and receiver is compulsory. There is no gap present bet...Discuss·1 likeSynchronous vs Asynchronous