Promises Glossary

Browse 2 promises terms defined in plain English, from the cultural dictionary of computing.

2 Promises Terms

Async/Await
Async/Await is a programming syntax pattern that allows developers to write asynchronous code in a sequential, synchronous-looking style, making it...
Promise Chain
A sequence of .then() calls on a JavaScript Promise where each callback receives the resolved value of the previous step and returns a new value or Promise,...

Related Topics