ECMAScript 2015

ECMAScript 2015

Maciej Rzepiński
Buy on Leanpub

Table of Contents

ECMAScript 2015

  • ES6-guide
  • let + const
    • let
    • const
  • arrow functions
    • Syntactic sugar
    • Fixed “this” = lexical “this”
    • The same function
    • Limitations
  • default + rest + spread
    • default
    • rest
    • spread
  • destructuring
    • arrays
    • objects
    • mixed
    • attention!
  • strings
    • template strings
    • extended support for Unicode
    • strings are iterable
    • new string methods
  • iterators
    • iterator & iterable
    • for-of loop
  • generators
  • classes and inheritance
    • Overview — an example of ES6 class syntax and ES5 equivalent
    • inheritance
    • static
    • get / set
    • Enhanced Object Properties
  • modules
    • Named export
    • Default export
    • API
  • promises
    • Callbacks and callback hell
    • Promises
    • Pitfall
  • set, map, weak
    • Map
    • Set
    • WeakMap
    • WeakSet
ECMAScript 2015/overview

ECMAScript 2015

course_overview

count_chapters
begin_reading
download
p_implied_book_part_name

ECMAScript 201512 chapters

Begin ›
  1. ES6-guide

  2. let + const

  3. arrow functions

  4. default + rest + spread

  5. destructuring

  6. strings

  7. iterators

  8. generators

  9. classes and inheritance

  10. modules

  11. promises

  12. set, map, weak