...

/

Summary: Chaining Promises

Summary: Chaining Promises

Get a quick summary of chaining promises.

Promise chains

Multiple promises can be chained together in a variety of ways to pass information between them. Each call to then(), catch(), and finally() creates and returns a new promise that is resolved when the preceding promise is settled. If the promise handler returns a value, then ...