Async/await without try/catch in JavaScript

Dzmitry Bayarchyk
ITNEXT
Published in
2 min readOct 2, 2019

--

“How to be sure that you handle async errors correctly”

When async/await was announced it became a game-changer in JavaScript development. It allows writing code in a synchronous way and we don’t need to have chained promise handlers:

--

--