ECMAScript 2015 (ES6)
In 2015, JavaScript introduced an important new keyword: const
.
It has become a common practice to declare arrays using const
:
Example
const cars = ["Saab", "Volvo", "BMW"];
Cannot be Reassigned
An array declared with const
cannot be reassigned :
Example
const cars = ["Saab", "Volvo", "BMW"];
cars = ["Toyota", "Volvo", "Audi"]; // ERROR
Arrays are Not Constants
The keyword const
is a little misleading. Continue reading JavaScript Array Const