In this project, we will be working with promises. Specifically, we are going to use with async & await to build a prompt interface. When someone clicks on something on the page, we want them to …
Event Loops & Callbacks
Javascript is asynchronous - let's talk about how the event loop works. Everything in Javascript is asynchronous, but what does that mean? Javascript is a single thread language that can only run …