mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
310 B
310 B
date | id | title |
---|---|---|
2020-11-11 | 5280d3db-1858-4b6c-82d7-6a5d5bf5d5c6 | JavaScript Consuming Promises |
Advice
Use Async functions instead of this.
Syntax
promise
.then(value => { /* fulfillment */ })
.catch(error => { /* rejection */ });