/egghead-async-await

Code for my "Asynchronous JavaScript with async/await" egghead.io course:

Primary LanguageJavaScriptMIT LicenseMIT

Asynchronous JavaScript with async/await

This repository contains the code for my Asynchronous JavaScript with async/await video course.
Go check it out if you haven't yet watched it!

Asynchronous JavaScript with async/await

Lessons

  1. Write an Asynchronous Function with async/await
  2. Call an Asynchronous Function in a Promise Chain
  3. Convert Any Function into an Asynchronous Function
  4. Handle Errors in Asynchronous Functions
  5. Await Multiple Promises Sequentially or Concurrently
  6. Await Multiple Promises Concurrently with Promise.all()
  7. Use the await Operator with Any Thenable
  8. Iterate Asynchronously with the for-await-of Loop