It's also worth considering that many editors have default snippets that transform something.await into (await something) for languages with prefix await, so it kind of makes sense to cut out the middle man and just make that the syntax to me.
That transformation makes writing both variants similar, but you still need to read `await (await fetch()).body()`, which IMO is much worse.
That transformation makes writing both variants similar, but you still need to read `await (await fetch()).body()`, which IMO is much worse.