blog.grossman.io
How to write async await without try-catch blocks in Javascript
1
ES7 Async/await allows us as developers to write asynchronous JS code that look synchronous. In current JS version we we're introduced to Promises, that allows us to simplify our Async flow and avoid Callback-hell. A callback-hell is a term used to descri... Read full article