Skip to content

Instantly share code, notes, and snippets.

@JNaftali
Last active December 6, 2016 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JNaftali/6fd18f0f47a6157b5374504f1f2f0081 to your computer and use it in GitHub Desktop.
Save JNaftali/6fd18f0f47a6157b5374504f1f2f0081 to your computer and use it in GitHub Desktop.

DBC Alumni Lightning Talk - Async and Await in ES2017

  1. What is Async? A. Syncronous code runs top to bottom B. Async code skips bits that take a long time for better user performance
  2. Why is Async? A. Making users wait is bad
  3. Things we're not going to talk about A. How do I write promises? - Read MDN B. How can I use ES2017 even though it probably isn't supported in my browser? - babeljs.io
  4. Async via callbacks A. 'Callback Hell'
  5. Async via await
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment