If you have ever had to deal with Promise heavy code, and in particular deep data structures you will likely be familiar with code like the following:
const body = await (await fetch(url)).json()
This has a LHS RHS interchange that causes non-linear edits while writing code (especially with autocomplete):
fetch(url) // LTR