Tag javascript array const or let

JavaScript Array Const

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…