第 64 题:模拟实现一个 Promise.finally
Promise.prototype.finally = function (callback) { let P = this.constructor return this.then( value => P.resolve(callback()).then(() => v…
- 共 1 页
- 1
Promise.prototype.finally = function (callback) { let P = this.constructor return this.then( value => P.resolve(callback()).then(() => v…
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。