Unscrambling JavaScript: Async Await
TL;DR - Async Await allows you to pause your script and wait for some code to resolve. This makes it ideal for fetching data from APIs or web scraping. If you didn’t already know, JavaScript runs code synchronously (at the same time) - In a lot of i...
Aug 18, 20213 min read251
