ES6+ Features
Modern JavaScript features introduced in 2015 and later.
javascript
// Arrow Functions
const x = (x, y) => x * y;
// Destructuring
const [a, b] = [10, 20];
// Spread Operator
const q1 = ["Jan", "Feb", "Mar"];
const q2 = ["Apr", "May", "Jun"];
const year = [...q1, ...q2];
// Template Literals
let text = `Hello World!`;