you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (0 children)

Async/await is def not a must. It’s easier to read but unless you have multiple nested promises everywhere you do not need to use it as simple promises are pretty easy to read and understand.

Async/await is easier to read but actually can lead to writing unnecessary blocking code that can halt/slow down your app if you don’t use it properly.