Promise in JavaScript

Gourab DasGourab Das
3 min read

What is a Promise in JavaScript? πŸ€”

A Promise in JavaScript is like a real-life promise:

πŸ‘‰ "I promise I'll finish my homework."

  • If you finish it, promise is fulfilled (resolved).

  • If you don't, promise is broken (rejected).


How Do Promises Work in Code?

A Promise has three states:
1️⃣ Pending – Waiting for something to happen.
2️⃣ Resolved (Fulfilled) – Everything went fine. βœ…
3️⃣ Rejected – Something went wrong. ❌

Example 1: Creating a Simple Promise

let myPromise = new Promise((resolve, reject) => {
  let homeworkDone = true; // Change this to false to see rejection

  if (homeworkDone) {
    resolve("I finished my homework! πŸŽ‰"); // Success
  } else {
    reject("I didn't do my homework. 😒"); // Failure
  }
});

// Using the Promise
myPromise
  .then((message) => console.log("Success:", message)) // If resolved
  .catch((error) => console.log("Error:", error)) // If rejected
  .finally(() => console.log("Promise finished.")); // Always runs

Why Do We Use Promises?

Promises help handle tasks that take time, like:
βœ… Fetching data from a server
βœ… Reading a file
βœ… Waiting for a user action

Without Promises, JavaScript would execute everything at once, even if some tasks aren’t finished.


Example 2: Using a Promise with setTimeout (Simulating Delay)

let delayedPromise = new Promise((resolve, reject) => {
  console.log("Loading... ⏳");

  setTimeout(() => {
    let success = true; // Try changing to false

    if (success) {
      resolve("Data loaded successfully! πŸŽ‰");
    } else {
      reject("Failed to load data. ❌");
    }
  }, 3000); // Wait 3 seconds
});

delayedPromise
  .then((message) => console.log("Success:", message))
  .catch((error) => console.log("Error:", error))
  .finally(() => console.log("Process completed."));

πŸ‘‰ The program waits 3 seconds before resolving or rejecting.


Example 3: Fetching Data with Promises

Now, let’s use fetch(), which returns a Promise automatically.

fetch("https://jsonplaceholder.typicode.com/users/1")
  .then((response) => response.json()) // Convert response to JSON
  .then((data) => console.log("User:", data)) // Success case
  .catch((error) => console.log("Error:", error)) // Failure case
  .finally(() => console.log("Request finished."));

πŸ‘‰ If the request succeeds, .then() runs.
πŸ‘‰ If it fails, .catch() runs.
πŸ‘‰ .finally() always runs, no matter what happens.


Example 4: Using Promise.all() (Handling Multiple Promises at Once)

Sometimes, you need to run multiple Promises together and wait for all of them.

let promise1 = fetch("https://jsonplaceholder.typicode.com/users/1").then(res => res.json());
let promise2 = fetch("https://jsonplaceholder.typicode.com/users/2").then(res => res.json());

Promise.all([promise1, promise2])
  .then((results) => console.log("Both users:", results))
  .catch((error) => console.log("Error:", error));

πŸ‘‰ If both requests succeed, .then() runs with an array of results.
πŸ‘‰ If one fails, .catch() runs.


Summary (TL;DR)

βœ… Promises handle things that take time.
βœ… They have three states: Pending, Resolved, Rejected.
βœ… Use .then() for success and .catch() for errors.
βœ… Use .finally() to run something at the end.
βœ… Use Promise.all() to wait for multiple Promises.


Next Steps?

Now that you understand Promises, you can learn async/await, which makes Promises even easier to work with.

0
Subscribe to my newsletter

Read articles from Gourab Das directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Gourab Das
Gourab Das