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

只有代碼警告⚠web class MyPromise{ constructor(executor){ // 每個實例都有一個狀態和結果屬性 this.status = 'pending'; this.value = undefined; // 建立數組存放then中的方法 this.resolveArr = []; this.rejectArr = []; // 定
相關文章
相關標籤/搜索