ES6+ Features
ES6 (ECMAScript 2015) introduced significant enhancements to JavaScript, and subsequent versions have continued to add powerful features. This guide explores the key features from ES6 and beyond that have transformed modern JavaScript development.
Overview of ECMAScript Evolution
- ES6/ES2015: Major update with many new features
- ES7/ES2016: Smaller update (Array.prototype.includes, Exponentiation Operator)
- ES8/ES2017: Async/await, Object methods
- ES9/ES2018: Rest/spread for objects, Promise.finally, async iteration
- ES10/ES2019: Array.prototype.flat, Object.fromEntries
- ES11/ES2020: Optional chaining, Nullish coalescing, BigInt
- ES12/ES2021: String.prototype.replaceAll, Promise.any, Logical assignment
- ES13/ES2022: Top-level await, Class fields, Error cause
ES6 (ES2015) Features
Let and Const Declarations
1 | // var - function-scoped, can be redeclared |
Arrow Functions
1 | // Traditional function expression |
Template Literals
1 | const name = 'Alice'; |
Destructuring Assignment
1 | // Object destructuring |
Default Parameters
1 | // Basic default parameters |
Rest and Spread Operators
1 | // Rest operator in function parameters |
Enhanced Object Literals
1 | // Property shorthand |
Classes
1 | // Class declaration |
Modules
1 | // Exporting (in math.js) |
Promises
1 | // Creating a promise |
Iterators and Generators
1 | // Iterators |
Map and Set
1 | // Map - key-value pairs (any type of keys) |
Symbol
1 | // Creating symbols |
Post-ES6 Features
Async/Await (ES2017)
1 | // Async function declaration |
Object Methods (ES2017)
1 | const person = { |
Rest/Spread for Objects (ES2018)
1 | // Rest with object destructuring |
Optional Chaining (ES2020)
1 | const user = { |
Nullish Coalescing (ES2020)
1 | // Logical OR - returns right side when left is falsy |
Logical Assignment (ES2021)
1 | // Logical OR assignment (||=) |
BigInt (ES2020)
1 | // Creating BigInt values |
Private Class Fields (ES2022)
1 | class BankAccount { |
Top-level Await (ES2022)
1 | // Before ES2022, await could only be used inside async functions |
Learning Resources
- MDN Web Docs - JavaScript
- Exploring ES6
- ES6 Features
- What’s New in ES2022
- JavaScript Info - Modern JavaScript
- Babel - JavaScript compiler that allows you to use newer syntax