28
If await pauses the function anyway, how is it different from just calling things one after another?
I am struggling with what await actually buys me. Consider two versions of the same function: one calls three asynchronous operations with await on each line, the other is a hypothetical version where the same…