INTRODUCCIÓN A ECMAScript 6
Hernan Camilo Gomez Ruiz
@hcamilogruiz
Ecma International is an industry association founded in 1961 and dedicated to the standardization of Information and Communication Technology (ICT) and Consumer Electronics (CE).
An unofficial HTML version of ECMAScript 6 (a.k.a. Next (a.k.a. Harmony)) working draft is being maintained by Mozilla here. For specification drafts released by ECMA you can visit wiki.ecmascript.org.
Let vs Var - Block Scoping
Const
Default values
Arrows are a function shorthand using the => syntax. They are syntactically similar to the related feature in C#, Java 8 and CoffeeScript. They support both expression and statement bodies. Unlike functions, arrows share the same lexical this as their surrounding code.
For in Loop
For of
Iterator
Brendan Eich