手写Promise⭐(race,finally方法除外)

只有代码警告⚠web class MyPromise{ constructor(executor){ // 每个实例都有一个状态和结果属性 this.status = 'pending'; this.value = undefined; // 建立数组存放then中的方法 this.resolveArr = []; this.rejectArr = []; // 定
相关文章
相关标签/搜索