03_Promise
job1.then(job2).then(job3).catch(handleError);
其中,job1、job2和job3都是Promise对象。

setTimeout可以看成一个模拟网络等异步执行的函数。