Hack Reactor - Week 4 Day 4
Late night tonight, but oh so much fun.
Spent most of the day working on extra credit as my pair, Shin Uesugi, finished the basic requirements yesterday.
Highlights of the day:
- Promises, promises, promises
- Hackathon
Promises, promises, promises
Promises is a way to more cleanly handle asynchronous data in Javascript. This replicates the callback model, but allows you to avoid callback hell by implementing chaining and error handling. It makes a lot of sense to use it, but today we had to implement it.