DEV Community

Cover image for JavaScript for Beginners: Variable Declarations
Ekaterine Mitagvaria
Ekaterine Mitagvaria

Posted on • Updated on • Originally published at Medium

JavaScript for Beginners: Variable Declarations

A variable in JavaScript is a box that holds different data in it and this box has a name. A variable can contain different data types. The name is mandatory because it will help to find this box later on. If there is no name it would be hard to find it because boxes can be very similar and you cannot just check everything it contains.
When you declare a variable besides the name you are using special keywords. These keywords give special features to newly created variables which will late be used in specific situations. These features give you more power to control the variables in different ways.
To declare a variable you simply write the special keywords, variable name, equal sign, and the value if there is any. The name is like a location indicator in the memory space which we can retrieve later.
Letā€™s go through all variable keywords to understand why and how we use them.

JavaScript variableĀ keywords

In JavaScript we have 3 variable keywords var, let, and const.
Var is the old and very first possible way of variable declaration in JavaScript.

variable declaration in JavaScript

Let is a new version and more modern way of var however has some differences which we will discuss very soon.

variable declaration in JavaScript
And finally, the const keyword which is also just as new and modern as the let keyword. Both let and const are most commonly used nowadays.

variable declaration in JavaScript

Sounds so easy right? However, there are a lot of differences between them.

Difference between JavaScript keywords

1ļøāƒ£ Declaration
Declaring a variable is the first thing that happens when we create a variable. Itā€™s very similar to value assignment but itā€™s not the same. To declare a value means to create a reference to this value for later use, assignment is when we give value. But this can happen simultaneously. So by using the JavaScript keyword and then the name, you declare the value and with the equal symbol, you give a value to it so you assign a valueā€Šā€”ā€Šthis is also called initialization.

initialization
When it comes to var you can actually redeclare a variable. But when it comes to the let or const you cannot. So you can give a var box some name and then use the same name and create again another box with the same name. But of course, both will not exist at the same time and the first one will be overwritten.
However, let and const cannot be redeclared. So if you give a name to a box using the let or const keyword and try to use the same name, it wonā€™t be possible and JavaScript will throw a syntax error ā€˜ā€¦has already been declaredā€™.

Redeclare a variable

2ļøāƒ£ Reassignment
Another main difference between these three keywords is the possibility to reassign the value. If you cannot redeclare a value it doesnā€™t mean you canā€™t change a value as itā€™s a separate process.
If you are using var, you can reassign the value of this variable anytime you want. If you know exactly what you are doing and you know definitely that you will not make any changes to this variable you can use the var keyword even in the modern code but as a beginner, itā€™s better to stick to let and const. The let keyword is the same as var and you can reassign the value.
Finally, the const keyword which cannot be reassigned, and once you assign the value to it cannot be changed. When you are a beginner itā€™s a great idea to always use const not to accidentally make mistakes and at the start, you might see the assignment errors. It helped me a lot to remember which keyword does what by using const because it is the most strict. If you use only var as a beginner there is a very low chance to see any errors and that way you will not really understand why your code is not working.

Reassignment

3ļøāƒ£ Naming
When naming variables in JavaScript itā€™s important to stick to some basic rules of naming conventions. Besides naming conventions, throughout your coding journey, you will have to come up with the names. There are different opinions among developers about what names are better. The most important thing to remember is that you need to try to name the variable in a such way that it shortly explains what it holds and it can be clear for other developers, or yourself when you come back to your old code.
Here are several naming conventions in JavaScript:

  1. Variable names can start with a letter, underscore (_), or a dollar symbol ($)
  2. Letter-case matters (helloThere and Hellothere can be different variables)
  3. You can use numbers anywhere but not at the start
  4. No spaces
  5. Cannot use reserved words (for example, const is a reserved word, so it does something and you cannot give. Variable the same name)
  6. When using boolean values itā€™s better to start the variable's name with is or has. (hasBalance, isClicked)
  7. A variable cannot have a hyphen(-) in the name If you want to know more about casing in JavaScript check out my post.

4ļøāƒ£ Scope
In JavaScript, we have different scopes. Scope refers to the availability of the variables and functions in specific parts of the code. This makes variables separate from each other and keeps the code more controllable and organized. This part of the code is called scope. For example, box in a box in a box in a box. The very first box is the global scope, the next box inside it is the function scope and another box inside the second box is the block scope.
Each variable keyword acts differently depending on the scope and itā€™s vital to understand it!
Global scope is a top scope and where the scope starts. It is the environment that is visible to all other parts of the code.
Function scope is the environment of the function. So whichever variable is created inside the function and we say itā€™s function scoped, it means that it doesnā€™t go outside the function scope.
Block scope is the third scope environment which also doesnā€™t let created variables go outside its scope as long as this variable is block-coped. Block scope considered if conditions, switch statements, or loops like for and while.

JavaScript scopes

Anything we declare in the global scope will be available everywhere across the code and in any other scope in this global scope. Variables declared with the var keyword are considered global and by being global they are attached to the window object. A window object is a global object of the browser environment.
On other other hand let and const are not attached to the window object. They are still global and can be accessed anywhere in the code. The reason is unknown as I tried to find the exact explanation why and in the end some people try to guess why and some simply agree that it was just designed this way. At this point, you donā€™t have to worry about this.

JavaScript scopes
Variables declared with var are also function scoped meaning that they will not be accessible outside the function scope. Any variable declared inside a function is deleted, and gone once the function ends.
Take a look at the next example which looks almost the same as the previous one.
However, inside the function, I created a new key variable called keyFour and also modified the keyOne. When I console log the keys inside the function, you will see that keyOne shows the latest value. We already discussed it, do you remember? The var can be redeclared and we can also reassign a new value. When I try to console log the updated value of keyOne however it shows the old value! Why? Because the new value is not accessible and itā€™s function-scoped.
Besides, I created an additional new key with another var, const, and let variables, and none of them are available outside this function. So the let and const keywords, are also function-scoped.

JavaScript scopes

A quick tip: if you donā€™t declare a variable with any variable keyword inside the function scope but assign a value, this variable automatically becomes global. However, this doesnā€™t work if you are using strict mode. If you donā€™t know what is strict mode just simply ignore this tip and never assign any values to variables without ever using any keyword.
And finally, block scope is where the variable declared with the var keyword is not block-scoped and is accessible outside the scope. At the same time, the let and const keywords are block-scoped.
Letā€™s do the exactly same thing we did in the function scope but move into the block scope.

JavaScript scopes
Letā€™s analyze what happens in the block scope.
First, we changed the keyOne value which is also available outside this loop. Compared to function scope, we could not retrieve a new value but this time we can because var is not block scoped. And we tried to retrieve a new var again which worked.
Secondly, we tried to retrieve let and const from the block scope however itā€™s not available. Why? Because let and const are both block-scoped, just like in the function scope.
There are a lot of things about the scope however for now will stop here as our main topic is variable declarations in general.

In conclusion, variable declaration in JavaScript is crucial for managing data in the code. Understanding the different variable keywords (var, let, and const) and their differences in declaration, reassignment, and scope is important for writing effective and efficient code. It is also important to follow the naming conventions and practice naming variables in a way that is clear and concise, making it easier to read and maintain the code. By understanding variable declarations in JavaScript, developers can make the most out of their code and write programs that are robust and scalable.

šŸ“Œ Enjoyed the post? Please let me know in the comment down below!

Top comments (0)