Rules of Naming Variables in JavaScript
There are few rules we need to follow when naming variables in JavaScript:
A variable name cannot be preceded by a number.
let 2years = 2022;
The above declaration will return an error because of the the variable name starts with a number.
Variabl...
teckierite.hashnode.dev2 min read