— Make it always sync or always async
— Ive heard something about it, but more info?
— Even if the asyncness is just setTimeout(..., 0);
or return Promise.resolve(...)
— Sync for user interaction, most of the cases, async for fetches
— Not sure what kind of user interaction you normally do
— But i dont want to stop the whole app because of a interaction.. do i?