在读【阮一峰】的 ES6 入门文档的时候,有一段代码是这样的。
文章中,还有一段是这样写的
所以,Promise.resolve(3).finally(()=>{}),解析出来的resolve 就是有值的 3;同理,Promise.reject(3).finally(()=>{}),解析出来的resolve也是3。
摘自:http://es6.ruanyifeng.com/#docs/promise