**参考资料** - [promise ppt](http://berwin.github.io/ppts/promise/) - [面试问到 Promise,这样回答最完美了](https://zhuanlan.zhihu.com/p/81431697) **知识点** - Promise实例具有then方法,then方法是定义在原型对象上的。它的作用是为Promise实例添加**状态改变时**的回调函数 - then方法的第一个参数是resolved状态的回调函数,第二个参数是rejected状态的回调函数 - then方法返回的是一个新的Promise实例
参考资料
知识点