关于javascript:JS语法-ES6ES7ES8ES9ES10ES11ES12新特性摘要

49次阅读

共计 4003 个字符,预计需要花费 11 分钟才能阅读完成。

ES6(2015)

  1. 类(class)

    class Man {constructor(name) {this.name = '小豪';}
      console() {console.log(this.name);
      }
    }
    const man = new Man('小豪');
    man.console(); // 小豪
    
  2. 模块化(ES Module)

    // 模块 A 导出一个办法
    export const sub = (a, b) => a + b;
    // 模块 B 导入应用
    import {sub} from './A';
    console.log(sub(1, 2)); // 3
  3. 箭头(Arrow)函数

    const func = (a, b) => a + b;
    func(1, 2); // 3
  4. 函数参数默认值
    function foo(age = 25,){// ...}
  5. 模板字符串
    const name = ‘ 小豪 ’;
    const str = Your name is ${name};
  6. 解构赋值

    let a = 1, b= 2;
    [a, b] = [b, a]; // a 2  b 1
  7. 延展操作符

    let a = [...'hello world']; // ["h", "e", "l", "l", "o", "","w","o","r","l","d"]
  8. 对象属性简写
    const name='小豪'; const obj = {name};
  9. Promise

    Promise.resolve().then(() => {console.log(2); });
    console.log(1);
    // 先打印 1,再打印 2
  10. let 和 const
    let name = '小豪';const arr = [];

ES7(2016)

  1. Array.prototype.includes()
    [1].includes(1); // true
  2. 指数操作符
    2**10; // 1024
    ES8(2017)
  3. async/await

    // 异步终极解决方案
    
    async getData(){const res = await api.getTableData(); // await 异步工作
     // do something    
    }
  4. Object.values()

    Object.values({a: 1, b: 2, c: 3}); // [1, 2, 3]
  5. Object.entries()

    Object.entries({a: 1, b: 2, c: 3}); // [["a", 1], ["b", 2], ["c", 3]]
    
  6. String padding

    // padStart
    'hello'.padStart(10); // "hello"
    // padEnd
    'hello'.padEnd(10) "hello"
  7. 函数参数列表结尾容许逗号
  8. Object.getOwnPropertyDescriptors()
    获取一个对象的所有本身属性的描述符, 如果没有任何本身属性,则返回空对象。
  9. SharedArrayBuffer 对象
    SharedArrayBuffer 对象用来示意一个通用的,固定长度的原始二进制数据缓冲区,
/**
 * 
 * @param {*} length 所创立的数组缓冲区的大小,以字节 (byte) 为单位。* @returns {SharedArrayBuffer} 一个大小指定的新 SharedArrayBuffer 对象。其内容被初始化为 0。*/
new SharedArrayBuffer(10)
  1. Atomics 对象
    Atomics 对象提供了一组静态方法用来对 SharedArrayBuffer 对象进行原子操作。

ES9(2018)

  1. 异步迭代
    await 能够和 for…of 循环一起应用,以串行的形式运行异步操作

    
    async function process(array) {for await (let i of array) {// doSomething(i);
      }
    }
  2. Promise.finally()

    Promise.resolve().then().catch(e => e).finally();
  3. Rest/Spread 属性

    const values = [1, 2, 3, 5, 6];
    console.log(Math.max(...values) ); // 6
  4. 正则表达式命名捕捉组

    const reg = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
    const match = reg.exec('2021-02-23');

ES10(2019)

  1. Array.flat()和 Array.flatMap()
    flat()

    
    [1, 2, [3, 4]].flat(Infinity); // [1, 2, 3, 4]

    flatMap()

[1, 2, 3, 4].flatMap(a => [a**2]); // [1, 4, 9, 16]
  1. String.trimStart()和 String.trimEnd()
    去除字符串首尾空白字符
  2. String.prototype.matchAll
    matchAll()为所有匹配的匹配对象返回一个迭代器
const raw_arr = 'test1  test2  test3'.matchAll((/t(e)(st(\d?))/g));
const arr = [...raw_arr];

在这里插入图片形容

  1. Symbol.prototype.description
    只读属性,回 Symbol 对象的可选形容的字符串。
Symbol('description').description; // 'description'
  1. Object.fromEntries()
    返回一个给定对象本身可枚举属性的键值对数组
// 通过 Object.fromEntries,能够将 Map 转化为 Object:
const map = new Map([['foo', 'bar'], ['baz', 42] ]);
console.log(Object.fromEntries(map)); // {foo: "bar", baz: 42}
  1. 可选 Catch
    ES11(2020)
  2. Nullish coalescing Operator(空值解决)
    表达式在 ?? 的左侧 运算符求值为 undefined 或 null,返回其右侧。
let user = {
    u1: 0,
    u2: false,
    u3: null,
    u4: undefined
    u5: '',
}
let u2 = user.u2 ?? '用户 2'  // false
let u3 = user.u3 ?? '用户 3'  // 用户 3
let u4 = user.u4 ?? '用户 4'  // 用户 4
let u5 = user.u5 ?? '用户 5'  // ''
  1. Optional chaining(可选链)
    ?. 用户检测不确定的两头节点
let user = {}
let u1 = user.childer.name // TypeError: Cannot read property 'name' of undefined
let u1 = user.childer?.name // undefined
  1. Promise.allSettled
    返回一个在所有给定的 promise 已被决定或被回绝后决定的 promise,并带有一个对象数组,每个对象示意对应的 promise 后果
const promise1 = Promise.resolve(3);
const promise2 = 42;
const promise3 = new Promise((resolve, reject) => reject('我是失败的 Promise_1'));
const promise4 = new Promise((resolve, reject) => reject('我是失败的 Promise_2'));
const promiseList = [promise1,promise2,promise3, promise4]
Promise.allSettled(promiseList)
.then(values=>{console.log(values)
});
  1. import()
    按需导入
  2. 新根本数据类型 BigInt
    任意精度的整数
  3. globalThis
    浏览器:window
    worker:self
    node:global

ES12(2021)

  1. replaceAll
    返回一个全新的字符串,所有合乎匹配规定的字符都将被替换掉
const str = 'hello world';
str.replaceAll('l', ''); //"heo word"
  1. Promise.any

    Promise.any() 接管一个 Promise 可迭代对象,只有其中的一个 promise 胜利,就返回那个曾经胜利的 promise。如果可迭代对象中没有一个 promise 胜利(即所有的 promises 都失败 / 回绝),就返回一个失败的 promise
    
    const promise1 = new Promise((resolve, reject) => reject('我是失败的 Promise_1'));
    const promise2 = new Promise((resolve, reject) => reject('我是失败的 Promise_2'));
    const promiseList = [promise1, promise2];
    Promise.any(promiseList)
    .then(values=>{console.log(values);
    })
    .catch(e=>{console.log(e);
    });
  2. WeakRefs
    应用 WeakRefs 的 Class 类创立对对象的弱援用(对象的弱援用是指当该对象应该被 GC 回收时不会阻止 GC 的回收行为)
  3. 逻辑运算符和赋值表达式
    逻辑运算符和赋值表达式,新个性联合了逻辑运算符(&&,||,??)和赋值表达式而 JavaScript 已存在的 复合赋值运算符有:
a ||= b
// 等价于
a = a || (a = b)

a &&= b
// 等价于
a = a && (a = b)

a ??= b
// 等价于
a = a ?? (a = b)
  1. 数字分隔符
    数字分隔符,能够在数字之间创立可视化分隔符,通过_下划线来宰割数字,使数字更具可读性
const money = 1_000_000_000;
// 等价于
const money = 1000000000;

1_000_000_000 === 1000000000; // true

正文完
 0