Dennis Kats @denniskats.dev · Mar 23

It doesn't entirely ignore the await. JavaScript will implicitly wrap the value in a fulfilled Promise and pause execution until the next tick.

2 likes 1 replies

?

Replies

Luis Crespo · Mar 23

Oh, so something such as "await 0" can be used as a convenient way to yield execution to the next tick?