饥人谷学员专享,请勿传播!
点击链接,查看中文学习资料。
- 作用域
- 箭头函数
- sum = (a, b) => a + b
- nums.forEach( v => { console.log(v) })
- 词法 this
- 参数处理
- 模板字面量
- 原有字面量加强
- 更安全的二进制字面量(0b1111101)
- 更安全的八进制字面量(0o767)
- 字符串支持 Unicode
- 正则表达式字面量添加Unicode 支持(u 标记)
- 正则表达式添加 y 标记,支持粘滞匹配
- 对象属性加强
- 属性定义支持短语法obj = { x, y }
- 属性名支持表达式obj = {[“baz” + quux() ]: 42}
- 添加proto属性,但不建议使用
- 解构赋值
- 数组匹配[ b, a ] = [ a, b ]
- 对象匹配let { a, b, c } = objABC
- 参数匹配function g ({ name: n, val: v }) {}
- 模块
- 类
- 迭代
- 生成器
- Promise
- 元编程
- 新增数据类型
- 原有内置对象 API 增强
- Object.assign
- Array.from
- Array.of
- Array.prototype.fill
- Array.prototype.find
- Array.prototype.findIndex
- Array.prototype.copyWithin
- Array.prototype.entries
- Array.prototype.keys
- Array.prototype.values
- String.prototype.includes
- String.prototype.repeat
- String.prototype.startsWith
- String.prototype.endsWith()
- Number.EPSILON
- Number.isInteger
- Number.isSafeInteger
- Number.isFinite
- Number.isNaN(‘NaN’)// false
- Math.acosh
- Math.hypot
- Math.imul
- Math.sign
- Math.trunc
- 尾递归优化