I see coworkers reach for AI to perform many tasks that are made trivial by a few keystrokes or a simple macro in Vim.
const [ a, b ] = await Promise.all([
(async () => ({ foo: 'bar' }))(),
(() => null)(),
])
When I do this, `a` and `b` have their proper types.