Promises In JavaScript
A promise in JavaScript is an object that represents the eventual completion (or failure) of an asynchronous operation. It acts as a placeholder for a future value and provides a way to handle the result when it becomes available.
Concepts:
Using Promises:
1.Create a Promise:
2.Handle the Promise:
Benefits of Promises:
Example:
function fetchData(url) {
return new Promise((resolve, reject) => {
setTimeout(() => {
const data = { message: "Data from " + url };
resolve(data); // Simulate successful data retrieval after a delay
}, 2000);
});
}
fetchData("https://example.com/api/data")
.then(data => {
console.log("Data received:", data);
})
.catch(error => {
console.error("Error fetching data:", error);
});
console.log("This line executes immediately");
In this example: