参考链接
官方文件
综合介绍
- Sayanee Basu, Use ECMAScript 6 Today
- Ariya Hidayat, Toward Modern Web Apps with ECMAScript 6
- Dale Schouten, 10 Ecmascript-6 tricks you can perform right now
- Colin Toh, Lightweight ES6 Features That Pack A Punch: ES6的一些“轻量级”的特性介绍
- Domenic Denicola, ES6: The Awesome Parts
- Nicholas C. Zakas, Understanding ECMAScript 6
- Justin Drake, ECMAScript 6 in Node.JS
- Ryan Dao, Summary of ECMAScript 6 major features
- Luke Hoban, ES6 features
- Traceur-compiler, Language Features: Traceur文档列出的一些ES6例子
- Axel Rauschmayer, ECMAScript 6: what’s next for JavaScript?: 关于ES6新增语法的综合介绍,有很多例子
语法点
- Kyle Simpson, For and against
let
: 讨论let命令的作用域
- Nick Fitzgerald, Destructuring Assignment in ECMAScript 6: 详细介绍解构赋值的用法
- Nicholas C. Zakas, Understanding ECMAScript 6 arrow functions
- Jack Franklin, Real Life ES6 - Arrow Functions
- Axel Rauschmayer, Handling required parameters in ECMAScript 6
- Axel Rauschmayer, ECMAScript 6’s new array methods: 对ES6新增的数组方法的全面介绍
- Dmitry Soshnikov, ES6 Notes: Default values of parameters: 介绍参数的默认值
- Mozilla Developer Network, WeakSet:介绍WeakSet数据结构
- Axel Rauschmayer, ECMAScript 6: maps and sets: Set和Map结构的详细介绍
- Mathias Bynens, Unicode-aware regular expressions in ES6: 详细介绍正则表达式的u修饰符
Object
Iterator和Generator
- Mozilla Developer Network, Iterators and generators
- Mozilla Developer Network, The Iterator protocol
- Matt Baker, Replacing callbacks with ES6 Generators
- Steven Sanderson, Experiments with Koa and JavaScript Generators
- jmar777, What's the Big Deal with Generators?
- Marc Harter, Generators in Node.js: Common Misconceptions and Three Good Use Cases: 讨论Generator函数的作用
- Axel Rauschmayer, Iterators and generators in ECMAScript 6: 探讨Iterator和Generator的设计目的
- StackOverflow, ES6 yield : what happens to the arguments of the first call next()?: 第一次使用next方法时不能带有参数
- Kyle Simpson, ES6 Generators: Complete Series: 由浅入深探讨Generator的系列文章,共四篇
- Gajus Kuizinas, The Definitive Guide to the JavaScript Generators: 对Generator的综合介绍
- Jan Krems, Generators Are Like Arrays: 讨论Generator可以被当作数据结构看待
- Harold Cooper, Coroutine Event Loops in Javascript: Generator用于实现状态机
Promise对象
Class与模块
工具