Skip Main Navigation
Ben IlegboduBen Ilegbodu

Goals & Features of ECMAScript 6

Saturday, August 01, 2015 · 4 min read

In this blog post, we’ll take a look at the goals and features of ECMAScript 6. If you haven’t read it already, be sure to check out the first blog post in this Learning ES6 series about the History of ES6 where I walked through the 20-year history of JavaScript and ECMAScript. It really sets the stage of how we’ve gotten to the point we’re at now.

Goals of ES6

The main goal for the ES6 / Harmony project was to fix some of JavaScript’s gotchas and add a whole bunch of functionality that we find in other popular programming languages that have been long missing in JavaScript. At the same time, the TC39 wanted keep the language relatively lightweight and maintain backwards compatibility in order to not break all of the existing code on the web.

They also wanted to make JavaScript a better language for writing code. They realized that applications written in JavaScript have become quite large over the years and wanted JavaScript to be better for writing these complex apps. So they added native modules to ES6. Modules also helped the committee make the shared JavaScript libraries used by all those complex applications easier to write as well.

Lastly, TC39 wanted to improve the interoperability of JavaScript by adopting existing standards developed by the community. For instance, ES6 adds native class support and the syntax is based on how constructor functions are currently used. Arrow functions work similarly to their CoffeeScript equivalents. Modules bear similarity to the CommonJS module format.

Features of ES6

The list of features added to ECMAScript 6 is a veritable laundry list of JavaScript goodies: functionality you’ve been wanting in JavaScript forever (and couldn’t believe never existed in the first place), as well as features you’ll probably never ever use unless you’re in the small minority of us who like to write JavaScript libraries.

Here’s the long list of 31 features (in alphabetical order):

I’ve seen folks group these features in many different ways, but I like the way Christian Heilmann organized them in his talk about Stapling and patching the web of now at the ForwardJS 3 conference.

Syntactic sugar features

These are the features which you can pretty much already do in ES5, but the new ES6 syntax makes doing them a lot more straightforward by supporting them natively. If you’re just getting started with ES6, these are the ones you’re more likely to use right off the bat. And best of all, they have the greatest level of support. They are:

  • Array APIs
  • Arrow functions
  • Default parameters
  • Destructuring
  • Math APIs
  • Object APIs
  • Object literal features
  • RegEx APIs
  • Rest parameters
  • Template literals
  • Spread operator
  • String APIs

Features for building scalable applications

The next group of features narrows the scope of its audience to those JavaScript developers building large, scalable applications. The features are less about making it easier to write code, but more about making it easier to organize code so that it doesn’t become a monolithic behemoth:

  • Block scoping
  • Classes
  • Generators
  • Iterators
  • Modules
  • Promises
  • Tail calls
  • Typed arrays
  • Unicode

Features for library builders

This last group of features are for the few that build shareable Javascript libraries, like jQuery, React, or d3.js.

  • __proto__
  • Maps
  • Module loaders
  • Proxies
  • Reflect API
  • Sets
  • Subclassable built-ins
  • Symbols
  • Weak map
  • Weak sets

Axel Rauschmayer asked his followers on Twitter which of the ES6 features were their favorites, which resulted in a top ten list of ES6 features:

  • Arrow functions (sugar) - a short-hand form of an anonymous function
  • Modules (library) - provide a modular of organizing and loading JavaScript code
  • Destructuring (sugar) - A concise yet flexible way of mapping values from objects or arrays into variables
  • Generators (apps) - specialized functions that create iterators using yield keyword
  • Promises (apps) - an alternative to callback functions for handling asynchronous operations
  • Template literals (sugar) - much cleaner way to build up string values
  • Spread operator (sugar) - turns elements of an array into arguments of a function call
  • Enhanced object literals (sugar) - various shorthand syntaxes for building up object literals
  • Block scoping (apps) - scoping variables to blocks via let keyword
  • Rest parameters (sugar) - allows you to get an array representing the "rest of the parameters," eliminating the need to use arguments

As you can see, the top 10 features span across all 3 groups. I will definitely be diving deep into each of these 10 features. They will be our main focus. I was surprised to not see default parameters on the list and they’re one of my favorite features, so I’ll dive deep on them when I discuss rest parameters and the spread operator. I’ll try to go deep on classes as well. I would like to take a quick look at the various APIs, maps & sets, and possibly iterators. Everything else, you will have to read up on your own.

But before we dive head first into all of the features, I want to first discuss how we can use this functionality in real environments and not just in ES6 playgrounds. Then when we start looking at the features, we can have a conversation about whether they’re supported enough to use or not yet.

Subscribe to the Newsletter

Get notified about new blog posts, minishops & other goodies


Hi, I'm Ben Ilegbodu. 👋🏾

I'm a Christian, husband, and father of 3, with 15+ years of professional experience developing user interfaces for the Web. I'm a Google Developer Expert Frontend Architect at Stitch Fix, and frontend development teacher. I love helping developers level up their frontend skills.

Discuss on Twitter // Edit on GitHub