13 · Environments & Packaging
Promise
A value that arrives later
An object representing an asynchronous result that will fulfill or reject in the future. Async/await is sugar over Promises.
Concrete example
`fetch(url)` returns a Promise that resolves to a Response.
Why it matters
The unit of asynchronous work in JavaScript.