The const keyword
What is const?
The const keyword was introduced in ES6 (2015), which is used to define a new variable in JavaScript. Variables that are defined with the const keyword cannot be redeclared or reassigned. These variables have a block scope {...}.
Gener...
moazamdev.hashnode.dev4 min read