PCPrafull Chaudhariinweb-dev-articles.hashnode.dev00Async Code in Node.js: Callbacks and Promises3d ago · 11 min read · Node.js is built to never wait. Understanding how it handles async work is the key to writing good server-side JavaScript. Why Async Code Exists in Node.js Node.js runs on a single thread. That meanJoin discussion
RKRajesh Kumarinrajesh71webdev.hashnode.dev00JavaScript Promises Explained for Beginners4d ago · 6 min read · What problem promises solve JavaScript Promises Explained for Beginners: Escaping Callback Hell In our last article, we learned that asynchronous JavaScript relies on Callbacks passing a function intoJoin discussion
PCPrafull Chaudhariinweb-dev-articles.hashnode.dev00JavaScript Promises Explained for Beginners6d ago · 10 min read · A promise is exactly what it sounds like, a guarantee that you'll get something back, even if not right away. The Problem Promises Were Built to Solve Before promises, JavaScript handled async tasksJoin discussion
AAAarav Ahujainjs-blogs-aarav.hashnode.dev00JS Promises Explained for BeginnersApr 11 · 2 min read · What problem Promises solve Before Promises, JavaScript used "Callbacks" to handle things that take time (like fetching data from API's). If you had many tasks, you would end up with Callback Hell—codJoin discussion
AAlamininpower-seo-ccbd.hashnode.dev00React Helmet SEO Bugs: 2 Critical Issues That Break Indexing (And Fix)Apr 9 · 5 min read · If your React app has SEO issues — like staging pages getting indexed or robots meta tags not working — react-helmet might be the reason. Many developers rely on react-helmet for managing SEO tags. ItJoin discussion
AKAnurag Kumarinanuragblogs.hashnode.dev00JavaScript Promises Explained for BeginnersApr 8 · 7 min read · 1. What problem promises solve What problem do Promises solve? JavaScript is single-threaded, so anything that takes time (fetching data, reading a file) has to be asynchronous — the code fires off a Join discussion
SPSaurabh Prajapatiinblog.thitainfo.com00The new Keyword in JavaScript: What Actually HappensApr 6 · 5 min read · Problem You've written constructor functions. You've used new. But if someone asked you to explain what JavaScript does internally when new runs — step by step — could you? Most developers can't, and Join discussion
DDivakarindivakar29.hashnode.dev00Understanding Promises In JavascriptMar 31 · 5 min read · Javascript is a Synchronous language. Meaning, that javascript executes sequentially from top to bottom. To make Javascript asynchronous or to make a part of javascript code to execute in asynchronousJoin discussion
KKKartik Kumarinjavascript-kartik.hashnode.dev00JavaScript Promises Explained for BeginnersMar 29 · 7 min read · What are Promises MDN : Promise is an object which represents the eventual completion (or failure) of an asynchronous operation and its resulting value. In simple way, Promise ek vaada hai jo ki kabhiJoin discussion
AKArijit Kunduinarijitkundu.hashnode.dev00JavaScript Promises Explained for BeginnersMar 26 · 8 min read · If you have been learning JavaScript for a while, you must have already seen callbacks, async code, and maybe this slightly scary word called Promise. At first, promises may sound like something too tJoin discussion