You will find yourself being that next person when you haven’t touched the code for a week and come back to add something and are like wtf.
- 0 Posts
- 2 Comments
Joined 2 years ago
Cake day: May 31st, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Await is usually there either because the performance doesn’t matter and the legibility is much higher with it, and/or because there are a series of asynchronous actions that depend on each other and await lets you write them as if they are sync because related to each other they are.