These are the features in ES6 that you should know

ES6 brings more features to the JavaScript language. Some new syntax allows you to write code in a more expressive way, some features complete the functional programming toolbox, and some features are questionable.
let and const
There are two ways for declaring a variable (let
and const
) plus one that has become obsolete (var
).