DEV Community

Discussion on: The dangers of async/await

Collapse
 
jaunkst profile image
Jason Aunkst

async/await is more often used when it should not be.

The async/await control flow is an abomination to me. I already have beef with Promises, and async/await just takes it to far.

I have fixed too many bugs in other people's code because they do not want to deal with async programming and instead just try to async-await their way through a feature.

Observables > Promises > Async/Await