教育改变生活

标题: JS语法ES9(2018)新特性 [打印本页]

作者: 李玮    时间: 2021-4-25 16:40
标题: JS语法ES9(2018)新特性
1. 异步迭代
await可以和for...of循环一起使用,以串行的方式运行异步操作
  1. async function process(array) {
  2.   for await (let i of array) {
  3.     // doSomething(i);
  4.   }
  5. }
复制代码


2. Promise.finally()
  1. Promise.resolve().then().catch(e => e).finally();
复制代码


3. Rest/Spread 属性
  1. const values = [1, 2, 3, 5, 6];
  2. console.log( Math.max(...values) ); // 6
复制代码


4. 正则表达式命名捕获组
  1. const reg = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
  2. const match = reg.exec('2021-02-23');
复制代码




5. 正则表达式反向断言
  1. (?=p)、(?<=p)  p 前面(位置)、p 后面(位置)
  2. (?!p)、(?<!p>) 除了 p 前面(位置)、除了 p 后面(位置)
复制代码


(?<=w)


(?<!w)


6. 正则表达式dotAll模式
正则表达式中点.匹配除回车外的任何单字符,标记s改变这种行为,允许行终止符的出现
  1. /hello.world/.test('hello\nworld'); // false
复制代码










欢迎光临 教育改变生活 (http://bbs.goldoar.com/) Powered by Discuz! X3.2