Event Loop Event Loop Let’s make a (perhaps shocking) claim: despite clearly allowing asynchronous JS code (like the timeout we just looked at), up until recently (ES6), JavaSc...
Promise API Recap new Promise(..) Constructor Promise.resolve(..) and Promise.reject(..) then(..) and catch(..) Promise.all([ .. ]) and Promise.race([ .. ]) Promise API Rec...