ECMAScript Cookbook
上QQ阅读APP看书,第一时间看更新

Chaining Promises

So far in this chapter, we've seen how to use promises to run single asynchronous tasks. This is helpful but doesn't provide a significant improvement over the callback pattern. The real advantage that promises offer comes when they are composed.

In this recipe, we'll use promises to combine asynchronous functions in series.