Programming - Concept
Async/await
A way of writing code that can wait for slower work to finish without blocking everything else
What's it for?
Makes asynchronous operations easier to read and manage while allowing other work to continue.
For example…
A website uses async/await while checking a payment so it can wait for the answer without freezing the rest of the page