Skip to content
  1. let和const
  2. 新基础类型:symbol bigint(number string null undefined boolean object)
  3. 字符串
    1. 模板字符串``
    2. 新方法 includes startsWith/endsWith
  4. 解构表达式
    1. 数组解构
    2. 对象解构
  5. 对象方面
    1. Map Set
    2. 数组新方法:Array.from(),map()、filter() forEach() some()、every() find()
    3. 对象新方法:Object.is()、Object.assign()、Object.keys()、Object.values()、Object.entries()
    4. 对象简写
    5. ...扩展运算符
  6. 函数方面
    1. 参数默认值
    2. 箭头函数
  7. class 类
  8. promise
  9. proxy
  10. 模块化 import