Async, Await and Promise Notes
Advantage of Async over Promise
They are both JavaScript’s unique way to achieve asynchronous programming,
while async/await(ES7) is introduced later than Promise(ES6),
because Promise was intended to eliminate the callback hell from ajax,
(callback hell => a ajax output requires a ajax input and chained together)
1 | // chained ajax, very hard to read |
but promise also create a monster of its own chaining together a lots of “then()”, and is not clear on the error catching
1 | // chained promise, each then(), or catch(), finally() returns a promise, but easier to read than chained ajax |
So the Async/await decorators was introduced later to offer easier way to do the same thing
1 | async function myPromise(){ |
To Sum Up
Async syntactic sugar provide a nice, simplified alternate way to handle asynchronous request that is simpler to read and maintain, over using Promise.
Last but not least, you can even add async in front of class/object methods to make them return promises, and await promises inside them.
1 | class Person { |