# Motivation Should be comfortable working with Promises when encountering them (very common in modern JS). # Proposal Introduction to Promises: - what problem they solve (callback hell) - async/await syntax - differences from Observables - constructing promises - `Promise.all` # Take away Should be able to use promises with async/await syntax and convert to/from Observables
Motivation
Should be comfortable working with Promises when encountering them (very common in modern JS).
Proposal
Introduction to Promises:
Promise.allTake away
Should be able to use promises with async/await syntax and convert to/from Observables