Slide 23
Slide 23 text
block scoped variables
class
constants
arrow functions with lexical this
default parameters
spread operator [1, 2, ...params]
template strings & interpolation `Hello ${name}`
computed property names
destructuring assignment [a, b] = [b, a]; {foo, bar} = options;
modules import React from "react"
promises
and heaps more!