DEV Community

Discussion on: Visual Studio Code can now convert your long chains of Promise.then()'s into async/await automagically

Collapse
 
razvanilin profile image
Razvan Ilin

I agree with this completely. I tried refactoring my code to async/await because it was the new thing, but I ended up sticking with promises because the code was much cleaner

Collapse
 
wormss profile image
WORMSS

It's very useful when you have if's especially if you have conditional diamond forks.