V8 8.5 带来的三个实用新特性!

Promise.anyPromise 新增了一个 any 方法,它接收一个 Promise 数组,当数组中某一个 Promise 为 fulfilled 后,它返回的 Promise 就会被返回。

const promises = [ fetch('/endpoint-a').then(() => 'a'), fetch('/endpoint-b').then(() => 'b'), fetch('/endpoint-c').then(() => 'c'),];try { const first = await Promise.any(promises); // 任何一个 Promise 为 fulfilled 状态 console.log(first); // → 'b'} catch (error) { // 所有 Promise 都被 rejected 了 console.assert(error instanceof AggregateError); // reject 结果数组 console.log(error.errors);}

如果所有输入的 Promise 都被拒绝,那么 Promise.any 将会返回一个 AggregateError 类型的异常,这个对象的 errors 属性包含所有 Promise 被拒绝的属性。

注意不要和 Promise.race 方法弄混, race 方法是数组中有任何一个 Promise 被解决或拒绝就会返回,而 any 方法是必须有一个被解决,如果所有都被拒绝是会抛出异常的。

String.prototype.replaceAllString.prototype.replaceAll 提供了一种简便的方式来替换子字符串的所有匹配,而不再需要创建全局 RegExp 。

看下面的例子,以前你要把 queryString 中所有的 + 替换掉,需要创建一个全局的正则:

const queryString = 'q=query+string+parameters';queryString.replace(/\+/g, ' ');

现在你只需要使用 replaceAll 方法:

相关推荐