Async and Await in JavaScript, the extension to a promise.

Matthew Doering
ITNEXT
Published in
5 min readMay 7, 2019

--

Learning about promises in JavaScript is one of the fundamentals that I found very interesting and fun to learn. I have been practicing interview questions and JavaScript Promises are a hot topic. Along this journey I came across Async and Await that are extensions of promises which allow us to write cleaner more readable code. If you are unfamiliar with what a Promise is please checkout out my other post What is a Promise really?

--

--