Variables (var, let, const)
Expert-Level Explanation
In JavaScript, variables are containers for storing data values. There are three ways to declare a variable: using var, let, or const.
varis the oldest keyword. It has function scope when declared within a function and globa...
akashthoriya.hashnode.dev3 min read