Search⌘ K
AI Features

Section Overview

Discover advanced ES2015 constructs like sets, maps, symbols, iterables, and generators. Learn how these features enable more elegant coding approaches and improve problem-solving abilities, especially useful for tackling complex JavaScript challenges and interview questions.

We'll cover the following...

Advanced Features

The following lessons include ES2015 constructs that aren’t used very often in writing code. Learning these concepts will unlock more elegant ways of accomplishing certain tasks.

New Data Structures

We’ll cover sets and maps, two data structures that have been added to JavaScript. While objects have all the functionality of both, these constructs make certain tasks slightly more intuitive. ...