💻ES6 tutorial: const in javascript
In JavaScript, the const keyword is used to declare a constant, which is a variable that cannot be re-assigned after it is initialized. Constants are block-scoped, meaning they are only accessible within the block where they are defined.
Declaration...
rafikadir.hashnode.dev2 min read