Understanding promise's methods is important to call APIs in parallel and it's an important concept to know for any machine coding interview.
Anuj Sharma
Last Updated Aug 31, 2024
Understanding promises static methods is very important for handling promises in different scenarios, especially in API calls. This concept is very important to understand for javascript and machine coding interview rounds
Promise.all()
Run promises in parallel, and return "all fulfilled response" If anyone failed then the whole result failed with an error.
Promise.allSetteled()
Run promises in parallel, return "all settled response" (either fulfilled or rejected)
Promise.race()
Run promises in parallel, return "first settled response" (either fulfilled or rejected )
Promise.any()
Run promises in parallel, return "first fulfilled response", if all rejected return AggregateError object with all the rejected errors as part of the errors object
Promise.all([promises]) used to call promises in parallel.
let p = Promise.all([10, Promise.resolve(30), 40]);
p.then((values) => console.log(values)) // log: [10, 30, 40]
// Synchronously return resolved promise
let p = Promise.all([])
p.then((value) => console.log(value)) // log: []
// Asynchronously return resolved promise in case all non-promise iterators
let p = Promise.all([10, 20, 30])
p.then((value) => console.log(value)) // log: [10, 20, 30]
let p = Promise.all([ Promise.resolve(44), 55, 66])
p.then((value) => console.log(value)) // log: [44, 55, 66]
// Return first rejected promise if there is any rejection
let p = Promise.all([
Promise.resolve(10),
Promise.reject('first reject'),
Promise.reject('second reject')
])
p.then(null, (err) => {
console.log(err) // Log: 'first reject'
})
// or
p.catch((err) => {
console.log(err) // Log: 'first reject'
})
Promise.allSettled just waits for all promises to settle, regardless of the result. The resulting array has
let urls = [
'https://api.github.com/users/iliakan',
'https://api.github.com/users/remy',
'https://no-such-url'
];
Promise.allSettled(urls.map( async url => await fetch(url)))
.then(results => {
results.forEach((result, num) => {
// Fulfilled results
if (result.status == "fulfilled") {
alert(`${urls[num]}: ${result.value.status}`);
}
// Rejected results
if (result.status == "rejected") {
alert(`${urls[num]}: ${result.reason}`);
}
});
});
Similar to "Promise.all" but waits only for the first settled promise and gets its result (or error).
// First fulfilled
Promise.race([
new Promise((resolve, reject) => setTimeout(() => resolve(1), 1000)),
new Promise((resolve, reject) => setTimeout(() => reject(new Error("Whoops!")),2000)),
new Promise((resolve, reject) => setTimeout(() => resolve(3), 3000))
]).then(alert); // 1
// First rejected
Promise.race([
new Promise((resolve, reject) => setTimeout(() => resolve(1), 5000)),
new Promise((resolve, reject) => setTimeout(() => reject(new Error("Whoops!")), 2000)),
new Promise((resolve, reject) => setTimeout(() => resolve(3), 3000))
]).then(alert)
.catch(alert) // Whoops!
Similar to Promise.race, but waits only for the first fulfilled promise and gets its result.
If all of the given promises are rejected, then the returned promise is rejected with AggregateError – a special error object that stores all promise errors in its errors property.
Promise.any([
new Promise((resolve, reject) => setTimeout(() => reject(new Error("Whoops!")),1000)),
new Promise((resolve, reject) => setTimeout(() => resolve(1), 2000)), // 1st fulfilled
new Promise((resolve, reject) => setTimeout(() => resolve(3), 3000))
]).then(alert); // 1
All rejected promise → AggregateError
Promise.any([
new Promise((resolve, reject) => setTimeout(() => reject(new Error("Ouch!")), 1000)),
new Promise((resolve, reject) => setTimeout(() => reject(new Error("Error!")), 2000))
]).catch(error => {
console.log(error.constructor.name); // AggregateError
console.log(error.errors[0]); // Error: Ouch!
console.log(error.errors[1]); // Error: Error!
});
Anuj Sharma
Last Updated Aug 29, 2024
Understand important web authorization techniques to enhance role-based authentication for any web application with popular techniques like Session & JSON Web Token (JWT)
Anuj Sharma
Last Updated Nov 16, 2024
A brief explanation of Cross-Origin Resource Sharing (CORS) concept to enable client application accessing resources from cross domain and HTTP headers involved to enable resource access.
Vivek Chavan
Last Updated Sep 15, 2024
You will get a clear understanding about working with any rest api and common concepts asked during interviews
Anuj Sharma
Last Updated Aug 29, 2024
Easy to understand 5 rules, that cover the behaviour of the "this" keyword in different contexts and helps you to master this keyword for any javascript interview.
Ram V
Last Updated Sep 20, 2024
Let's dive into how the function's bind method works to bind the context to any function and understand its internal workings by exploring bind method polyfill.
Anuj Sharma
Last Updated Sep 3, 2024
Most comprehensive frontend system design cheat sheet to help in approaching the system design interview in the best-structured way. Covered 7 most important frontend system design interview topics.
© 2024 FrontendGeek. All rights reserved