Appearance
Prefer await to then()/catch()/finally() for reading Promise values
await
then()
catch()
finally()
Async/await syntax can be seen as more readable.
myPromise.then(doSomething);