ES6 Features - Article #1
Const
In ES6, the const keyword is introduced to create constant variables which can't be reassigned after their initial assignment. Attempting to reassign the const variables will get the TypeError: Assignment to constant variable.
Here is an exampl...
my0k0.hashnode.dev2 min read