Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 29, 2024Understanding Callbacks and Higher-Order Functions in JavaScriptJavaScript is a flexible language, allowing functions to be assigned to variables, passed as arguments, and even returned from other functions. This capability is made possible because JavaScript treats functions as first-class citizens. But what doe...Discuss·10 likes·26 readsProgramming EssentialsExcited about these concepts! But I’m curious—what’s the biggest challenge you've faced when working with higher-order functions? 🤔 10
Yasin Sarkaryasinsarkar.hashnode.dev·Oct 22, 2024🚀 Understanding JavaScript’s Callbacks, Promises, and Async/Await: A Guide to Asynchronous Programming 💻JavaScript, by design, is a single-threaded language 🧵. This means it can only execute one task at a time. However, many modern applications require operations like network requests 🌐, file handling 📁, or database queries 🗄️, which can take time ...Discuss·31 readsJavaScript
rohit manthapractical-web-dev.hashnode.dev·Oct 13, 2024My 7-Day JavaScript Journey: From Basics to Asynchronous MasteryThe past week has been all about diving deep into JavaScript, pushing through challenges, and coming out with a much clearer understanding of the language. As someone who enjoys working with technologies and solving problems, I wanted to share my exp...DiscussJavaScript
Piyush kantbytebybytelearning.hashnode.dev·Sep 8, 2024Unlocking the Potential of JavaScript Callbacks: Explained with ExamplesIntroduction JavaScript is a single-threaded, asynchronous programming language. While its synchronous nature can make things simpler, handling long-running operations (like network requests or file reads) requires a non-blocking approach. Enter call...DiscussJavaScript
Keshav Ajavascriptasync.hashnode.dev·Jul 20, 2024Asynchronous ProgramingAsynchronous Programming allows to perform tasks that takes time to execute (such as fetching data from a server or reading files) without blocking the execution of other code. Instead of waiting for a task to complete, the code moves on to other tas...DiscussJavaScript
Oluwadamisi SamuelforfreeCodeCampfreecodecamp.org·Jul 3, 2024How to Use Callback Functions in JavaScriptWhen you're building dynamic applications with JavaScript that display real-time data – like a weather app or live sports dashboard – you'll need a way to automatically fetch new data from an external source without disrupting the user experience. Yo...Discusscallbacks
Romman Sabbirrommansabbir.com·Jun 23, 2024Android : Managing WebView Callbacks with BuildConfig Securely.In Android development, buildConfigField is a powerful tool for defining constants at build time. It allows developers to embed configuration values directly into the generated BuildConfig class, making them accessible throughout the application code...Discuss·1 like·329 readsAndroid Application Developmentbuildconfig
Vatsal Bhesaniyavatsal08.hashnode.dev·Jun 18, 2024Mastering Asynchronous JavaScript: A Comprehensive Guide to Building Responsive Web AppsIn this article, we’ll explore the world of asynchronous programming and learn how to handle non-blocking operations in JavaScript. We’ll cover the differences between synchronous and asynchronous code, callbacks, promises, async/await, error handlin...DiscussJavaScript
Adeoye Davidoluferanmidavid.hashnode.dev·May 13, 2024Understanding Asynchronous Programming: A Beginner's Guide to Promises, Async/Await, and CallbacksIntroduction Asynchronous programming is a cornerstone of modern development, enabling applications to perform tasks concurrently and maintain responsiveness. However, for many developers, grasping the concepts of asynchronous programming can be chal...Discuss·10 likesasynchronous programming
Musab HabeebforfreeCodeCampfreecodecamp.org·Feb 2, 2024Asynchronous Programming in JavaScript – Callbacks, Promises, & Async/Await ExamplesAll programming languages have runtime engines that execute their code. In JavaScript, the runtime engine is single-threaded, which means that it runs code line by line or sequentially. The JavaScript runtime engine makes it a synchronous programming...Discussasync/await