返回介绍

ES2018(ES9)带来的重大新特性

发布于 2025-01-23 23:27:39 字数 3309 浏览 0 评论 0 收藏 0

ES2018 是 ECMAScript 标准的最新版本。

它引入了哪些新东西呢?

Rest(剩余)/Spread(展开) 属性

ES6 在处理数组解构时,引入了 rest(剩余) 元素的概念,例如:

const numbers = [1, 2, 3, 4, 5]
[first, second, ...others] = numbers

还有展开元素时:

const numbers = [1, 2, 3, 4, 5]
const sum = (a, b, c, d, e) => a + b + c + d + e
const sum = sum(...numbers)

ES2018 为对象引入了类似的功能。

rest(剩余) 属性

const { first, second, ...others } = { first: 1, second: 2, third: 3, fourth: 4, fifth: 5 }
first // 1
second // 2
others // { third: 3, fourth: 4, fifth: 5 }

spread(展开) 属性 允许通过组合展开运算符 ... 之后传递的对象属性来创建新对象:

const items = { first, second, ...others }
items //{ first: 1, second: 2, third: 3, fourth: 4, fifth: 5 }

Asynchronous iteration (异步迭代)

新的 for-await-of 构造允许您使用异步可迭代对象作为循环迭代:

for await (const line of readLines(filePath)) {
  console.log(line)
}

由于这使用 await ,你只能在异步函数中使用它,就像普通的 await 一样(参见 async / await 章节)

Promise.prototype.finally()

当一个 promise 得到满足(fulfilled)时,它会一个接一个地调用 then() 方法。

如果在此期间发生错误,则跳过 then() 方法并执行 catch() 方法。

finally() 允许您运行一些代码,无论 promise 的执行成功或失败:

fetch('file.json')
  .then(data => data.json())
  .catch(error => console.error(error))
  .finally(() => console.log('finished'))

正则表达式改进

先行断言(lookahead) 和 后行断言(lookbehind)

正则表达式后行断言(lookbehind):根据前面的内容匹配字符串。

下面是一个先行断言(lookahead):您可以使用 ?= 匹配一个字符串,该字符串后面跟着一个特定的子字符串:

/Roger(?=Waters)/

/Roger(?= Waters)/.test('Roger is my dog') //false
/Roger(?= Waters)/.test('Roger is my dog and Roger Waters is a famous musician') //true

?! 执行逆操作,匹配一个字符串,该字符串后面没有一个特定的子字符串:

/Roger(?!Waters)/

/Roger(?! Waters)/.test('Roger is my dog') //true
/Roger(?! Waters)/.test('Roger Waters is a famous musician') //false

先行断言(lookahead) 使用 ?= 符号。它们已经可用了。

后行断言(lookbehind),是一个新功能,使用 ?< =

/(?<=Roger) Waters/

/(?<=Roger) Waters/.test('Pink Waters is my dog') //false
/(?<=Roger) Waters/.test('Roger is my dog and Roger Waters is a famous musician') //true

后行断言(lookbehind) 逆操作,使用 ?< !

/(?<!Roger) Waters/

/(?<!Roger) Waters/.test('Pink Waters is my dog') //true
/(?<!Roger) Waters/.test('Roger is my dog and Roger Waters is a famous musician') //false

Unicode 属性转义 \p{…} 和 \P{…}

在正则表达式模式中,您可以使用 \d 匹配任何数字, \s 匹配任何不为空格的字符, \w 匹配任何字母数字字符,依此类推。

这个新功能将扩展此概念到引入 \p{} 匹配所有 Unicode 字符,否定为 \P{}

任何 unicode 字符都有一组属性。 例如, Script 确定语言系列, ASCII 是一个布尔值, 对于 ASCII 字符,值为 true ,依此类推。 您可以将此属性放在花括号中,正则表达式将检查是否为真:

/^\p{ASCII}+$/u.test('abc')   //✅
/^\p{ASCII}+$/u.test('ABC@')  //✅
/^\p{ASCII}+$/u.test('ABC
                  
                  
                

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文