Asynchronous (async) JavaScript
- An asynchronous action is one where you kick a process off and don't wait around for a result
- Also called "non-blocking" sometimes
- Talking on the phone is synchronous (other than actually )
- Text messages are asynchronous
- Everything you write in pure JavaScript is synchronous
- The environment takes care of background (async) work
3 / 25