1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

doc: ES7 feature list

This commit is contained in:
ruanyf 2016-02-09 10:00:25 +08:00
parent fd088aceab
commit b13b07d960

View File

@ -624,15 +624,15 @@ fs.writeFileSync('out.js.map', result.sourceMap);
**Stage 0**
- Function Bind Syntax 函数的绑定运算符
- String.prototype.at 字符串的静态方法at
- Function Bind Syntax函数的绑定运算符
- String.prototype.at字符串的静态方法at
**Stage 1**
- Class and Property Decorators Class的修饰器
- Class Property Declarations Class的属性声明
- Class and Property DecoratorsClass的修饰器
- Class Property DeclarationsClass的属性声明
- es7.exportExtensionsexport的写法改进
- String.prototype.{trimLeft,trimRight} 字符串删除头尾空格的方法
- String.prototype.{trimLeft,trimRight}字符串删除头尾空格的方法
**Stage 2**
@ -640,17 +640,17 @@ fs.writeFileSync('out.js.map', result.sourceMap);
**Stage 3**
- SIMD API “单指令,多数据”命令集
- Async Functions async函数
- Object.values/Object.entries Object的静态方法values()和entries()
- String padding 字符串长度补全
- Trailing commas in function parameter lists and calls 函数参数的尾逗号
- Object.getOwnPropertyDescriptors Object的静态方法getOwnPropertyDescriptors
- SIMD API“单指令,多数据”命令集
- Async Functionsasync函数
- Object.values/Object.entriesObject的静态方法values()和entries()
- String padding字符串长度补全
- Trailing commas in function parameter lists and calls函数参数的尾逗号
- Object.getOwnPropertyDescriptorsObject的静态方法getOwnPropertyDescriptors
**Stage 4**
- Array.prototype.includes 数组实例的includes方法
- Exponentiation Operator 指数运算符
- Array.prototype.includes数组实例的includes方法
- Exponentiation Operator指数运算符
ECMAScript当前的所有提案可以在TC39的官方网站[Github.com/tc39/ecma262](https://github.com/tc39/ecma262)查看。