top | item 26211779

(no title)

jkells | 5 years ago

For other JS developers the stuff about await isn't relevant. It's not the same as a JS async/await

In JS an await is just syntactic sugar around a then() on a promise. The Await in the article is a method to block the thread until a promise resolves, there is no equivalent in JS.

.NET has a similar mechanism with Task.Result with similar pitfalls

discuss

order

vigneshwaran|5 years ago

Yes. The async/await in JS is totally different from Await in plain Scala (without any frameworks)