MSMohd Sameerinmohd-sameer.hashnode.dev00Understanding Callbacks in JavaScript1d ago · 3 min read · Imagine you’re at a busy restaurant. Instead of making you stand at the counter until your food is ready, the host gives you a buzzer. You go sit down, chat with friends, and relax. When the kitchen iJoin discussion
DDivakarindivakar29.hashnode.dev00Callbacks In JavaScript6d ago · 4 min read · When you first start writing Javascript everything feels simple and easy. Code get executed line-by-line, top to bottom . But real world application don't function like this they want to call a functiJoin discussion
PKPRINCE KUMARinprincekumar-engineer.hashnode.dev00Callbacks in JavaScript: Why They Exist6d ago · 4 min read · Introduction: Imagine you order food at a restaurant. You don’t stand in the kitchen watching the chef cook, you give your order and wait. When the food is ready, the waiter calls you back. That’s exaJoin discussion
AAAsghar aliinasgharalifs.hashnode.dev00Callbacks in JavaScript: Why They Exist6d ago · 7 min read · What is a callback function? Let's understand how you operate in the real world when you order food at a restaurant. You don't stand frozen on the counter staring at the kitchen until your food arriveJoin discussion
VPVed Pandeyinvedpandeydev.hashnode.dev00JavaScript Promises Explained for BeginnersApr 16 · 6 min read · What are we gonna Study? So, today we'll be learning about Promises, More specifically the topics listed below: What problem promises solve Promise states (pending, fulfilled, rejected) Basic promiJoin discussion
MAMohammad Amaninmohammadaman.hashnode.dev00Callbacks in JavaScript — why they exist and where they breakApr 14 · 3 min read · Functions as values (the foundation) In JavaScript, functions can be: assigned to variables passed as arguments returned from other functions function greet(name) { return `Hello, ${name}`; } Join discussion
JDJyoti Dwivediinjs-learn-fun.hashnode.dev00Callbacks in JavaScript: Why They ExistApr 13 · 10 min read · The Coffee Shop Revelation ☕ Last semester, I worked part-time at a campus coffee shop. One day, my manager gave me a task: "Make a latte. When you're done, call out the customer's name so they can piJoin discussion
SKsagar kembleinblog.sagarkemble.dev00Callbacks in JavaScript: Why They ExistApr 7 · 5 min read · Passing function as an argument Before diving into callbacks lets first understand function as an argument , foundations are must before understanding advance topics. Js treats function as a value meaJoin discussion
PJPurakhnath Jyaniinpurakhnath-jyani.hashnode.dev00Callbacks in JavaScript: Why They ExistApr 4 · 6 min read · Functions as Values Functions as First-Class Citizens In JavaScript, functions are treated as "first-class citizens". This is a technical way of saying that functions are just regular values. They canJoin discussion
SKShubham Kumar Singhinshubhamsinghbundela.hashnode.dev00From Callbacks → Callback Hell → Promises → Async/Await (JavaScript)Apr 1 · 2 min read · When I started learning async JavaScript, I was confused about how things evolved from callbacks to async/await. So here’s a simple breakdown with examples 1. What is a Callback? A callback is just a Join discussion