mirror of
https://github.com/ruanyf/es6tutorial.git
synced 2025-05-25 03:02:21 +00:00
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# [ECMAScript 6 入门]()
|
|
|
|
作者:[阮一峰](http://www.ruanyifeng.com)
|
|
|
|
授权:<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">署名-非商用许可证</a>
|
|
|
|
## 目录
|
|
1. [前言](#README)
|
|
1. [ECMAScript 6简介](#docs/intro)
|
|
1. [let和const命令](#docs/let)
|
|
1. [变量的解构赋值](#docs/destructuring)
|
|
1. [字符串的扩展](#docs/string)
|
|
1. [正则的扩展](#docs/regex)
|
|
1. [数值的扩展](#docs/number)
|
|
1. [数组的扩展](#docs/array)
|
|
1. [函数的扩展](#docs/function)
|
|
1. [对象的扩展](#docs/object)
|
|
1. [Symbol](#docs/symbol)
|
|
1. [Proxy和Reflect](#docs/proxy)
|
|
1. [二进制数组](#docs/arraybuffer)
|
|
1. [Set和Map数据结构](#docs/set-map)
|
|
1. [Iterator和for...of循环](#docs/iterator)
|
|
1. [Generator函数](#docs/generator)
|
|
1. [Promise对象](#docs/promise)
|
|
1. [异步操作和Async函数](#docs/async)
|
|
1. [Class](#docs/class)
|
|
1. [Decorator](#docs/decorator)
|
|
1. [Module](#docs/module)
|
|
1. [编程风格](#docs/style)
|
|
1. [读懂规格](#docs/spec)
|
|
1. [参考链接](#docs/reference)
|
|
|
|
## 其他
|
|
- [源码](http://github.com/ruanyf/es6tutorial/)
|
|
- [修订历史](https://github.com/ruanyf/es6tutorial/commits/gh-pages)
|
|
- [反馈意见](https://github.com/ruanyf/es6tutorial/issues)
|