JavaScript Promises – Understand with Examples

In this post, we will understand JavaScript Promises and how to use them effectively. Promises are a powerful feature in JavaScript for handling asynchronous operations.

What are Promises in JavaScript?

Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation. They provide a cleaner way to handle callbacks and avoid the infamous “callback hell”.

Prerequisite

Make sure you’re using a modern JavaScript environment that supports Promises. All major browsers and Node.js versions support Promises natively.

Creating a Promise

To create a Promise, we use the Promise constructor. Let’s see an example:

const myPromise = new Promise((resolve, reject) => {
// Simulating an asynchronous operation
setTimeout(() => {
const success = true;
if (success) {
resolve("Operation successful!");
} else {
reject("Operation failed!");
}
}, 1000);
});

console.log(myPromise); // Promise {<pending>}

In this example, we create a Promise that simulates an asynchronous operation using setTimeout. After 1 second, it either resolves or rejects based on the success variable.

Using Promises

Now that we have created a Promise, let’s see how to use it.

Using .then() and .catch()

The most common way to use Promises is with the .then() and .catch() methods:

myPromise
.then((result) => {
console.log(result); // Output: "Operation successful!"
})
.catch((error) => {
console.error(error);
});

Chaining Promises

One of the powerful features of Promises is the ability to chain them:

function step1() {
return new Promise((resolve) => {
setTimeout(() => resolve("Step 1 complete"), 1000);
});
}

function step2(message) {
return new Promise((resolve) => {
setTimeout(() => resolve(message + ", Step 2 complete"), 1000);
});
}

step1()
.then(step2)
.then((result) => {
console.log(result); // Output: "Step 1 complete, Step 2 complete"
})
.catch((error) => {
console.error(error);
});

Promise.all()

Promise.all() is useful when you want to run multiple Promises concurrently and wait for all of them to complete:

const promise1 = Promise.resolve(3);
const promise2 = new Promise((resolve) => setTimeout(() => resolve("foo"), 100));
const promise3 = 42;

Promise.all([promise1, promise2, promise3])
.then((values) => {
console.log(values); // Output: [3, "foo", 42]
})
.catch((error) => {
console.error(error);
});

Promise.race()

Promise.race() returns a Promise that fulfills or rejects as soon as one of the Promises in an iterable fulfills or rejects:

const promise1 = new Promise((resolve) => setTimeout(() => resolve("one"), 500));
const promise2 = new Promise((resolve) => setTimeout(() => resolve("two"), 100));

Promise.race([promise1, promise2])
.then((value) => {
console.log(value); // Output: "two"
})
.catch((error) => {
console.error(error);
});

Async/Await

ES2017 introduced async/await, which is syntactic sugar on top of Promises, making asynchronous code look and behave more like synchronous code:

async function fetchData() {
try {
const response = await fetch('https://api.example.com/data');
const data = await response.json();
console.log(data);
} catch (error) {
console.error('Fetching data failed:', error);
}
}

fetchData();

Conclusion

As you can see in the above examples, Promises provide a powerful way to handle asynchronous operations in JavaScript. They help in writing cleaner, more maintainable code by avoiding callback hell and providing better error handling.

Finally, understanding Promises in JavaScript is crucial for modern web development. Feel free to ask any questions in the comment section below.

Leave a Reply