Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 1.91 KB

File metadata and controls

16 lines (12 loc) · 1.91 KB

Promise.all 中等 #array #promise

by Anthony Fu @antfu

接受挑战    English 日本語

给函数PromiseAll指定类型,它接受元素为 Promise 或者类似 Promise 的对象的数组,返回值应为Promise<T>,其中T是这些 Promise 的结果组成的数组。

const promise1 = Promise.resolve(3);
const promise2 = 42;
const promise3 = new Promise<string>((resolve, reject) => {
  setTimeout(resolve, 100, 'foo');
});

// 应推导出 `Promise<[number, 42, string]>`
const p = PromiseAll([promise1, promise2, promise3] as const)

返回首页 分享你的解答 查看解答