async/await.
async/await & Promise pitfalls
async/await simplifies asynchronous logic. Be careful to run independent promises in parallel and handle errors properly.
Anti-pattern: waiting sequentially:
Correct: in parallel with Promise.all:
Error handling with try/catch: