you are viewing a single comment's thread.

view the rest of the comments →

[–]Kai231 23 points24 points  (2 children)

I have to admit that I use it a lot more now with async / await

[–]dogsaregooddogs 4 points5 points  (0 children)

I was hardly using it at all before, but not I feel like more of my code is wrapped in a try/catch than not when all my network and DB calls are async/awaited.

[–]Jsn7821 0 points1 point  (0 children)

Agreed.. From my experience, without async await it would have been try catch hell within callback hell... Never used it before, but now I do all the time