DEV Community

Cover image for Var vs Let vs Const
Sethu Senthil
Sethu Senthil

Posted on • Updated on

Var vs Let vs Const

Var (Variable)

Var has been with us since the beginning. You might be thinking, "brah this is too basic", but we got to understand how var's work completely and what happens behind the scenes in order to understand the use cases of Const & Let.

Scope

The major differentiating factor from the other ways of declaring variables in js is the fact that vars have a function scope. For example:

(function(){ console.log(i); //Var's value is undefined, this means the var is declared (but how?) if("5"==="5"){ var i = 100; } console.log(i); //Var's value is 100, but i'm out of the if statement! })();

Why didn't the code break? Because js has a property called "hoisting". It tries to bring any sort of declaration (including named functions)on the topmost scope as possible. Since Vars use function scope, it brings it to the first line of the function. Keep in mind the Var is just being declared, not being assigned a value. That's why we are getting the string 'undefined' instead of 'error:var i is not defined'. Here is an example of what exactly is happening behind the scenes:

(function(){ var i; //Var is declared but the value is not defined, so it automatically inherits the string 'undefined' console.log(i); if("5"==="5"){ i = 100; //^ its changing var i's value from 'undefined' to the integer 100. } console.log(i); //Var's value is 100 like expected })();

Note: The variable's value can be accessed outside the if statement.

Let

Since we understand var's we can now take a deep look into let.

Scope

Here's the twist. the scope for all let declarations is the fact that let statements use block scope similar to other OOPS programming languages such as Java or when 'use strict' in js. Block scope means that it can only be used within the whatever is being declared a.k.a the block. Let's (pun intended) take us old example and replace it with let:

(function(){ console.log(i); //Error: i not defined if("5"==="5"){ console.log(i); //Error: i not defined let i = 100; console.log(i); //Should print '100' (delete the first two logs) } console.log(i);//Error: i not defined })();

As runkit suggests, i can only be accessed in the if statement after the line of the declaration. Hoisting has no power when we declare statements with let.

Const

Const is a very easy to understand, because it's essentially the same thing as var & let (aren't all of them).

Scope

Const just like let uses block scope, so it has all the properties of let besides the ability to prevent redeclaration of the variable. Let's take a look at a few examples:

(function(){ const message ="what up"; console.log(message); message = "bye"; //Error: Message is already declared console.log(message); })();

As you can see above, there are a few exceptions. If you have declared a string or a number the value can't be changed either. But when you are declaring as an object, it gets a bit interesting.
(function(){ var message = {body:"what up", title:"rcs"}; //Runkit is being weird please fix the obvious syntax error //If you know why this is happening please comment below! console.log(message); message.body = "bye"; message.send = true; console.log(message); message = 100; //Error: message is already declared })();

Message's properties can be modified, or added but message cannot be redeclared into a integer with a value of 100.

Here is a tiny chart I made:
Js object dec chart

Top comments (5)

Collapse
 
kepta profile image
Kushan Joshi • Edited

Sethy really like your illustrations and the article overall. But I believe Functions are actually Vars is wrong.

It might seem they are the same, but there are some minor details which are easy to overlook.
In your example

function whatUp(){
console.log('what up');
} 
whatUp();
Enter fullscreen mode Exit fullscreen mode

and

var whatUp = function(){
console.log('what up');
}
whatUp();
Enter fullscreen mode Exit fullscreen mode

are not the same thing, if you just move the whatUp to the top.

whatUp();
var whatUp = function(){
console.log('what up');
}
Enter fullscreen mode Exit fullscreen mode

will fail whereas the one below won't fail

whatUp();
function whatUp(){
console.log('what up');
} 
Enter fullscreen mode Exit fullscreen mode

This happens because in javascript functions are hoisted. But it doesn't happen for anonymous functions.

var whatUp = function(){
console.log('what up');
}
Enter fullscreen mode Exit fullscreen mode

The example above is called an anonymous function (since it doesn't have a name), assigned to a variable whatUp. Anonymous functions are great for places where you quickly want to pass a function which doesn't really need a name, for eg. callbacks. But they are difficult to debug, because if they throw an error, stack trace would look something like this.
image

But if we use a non-anonymous function it will also give us the helpful function name.

Collapse
 
sethusenthil profile image
Sethu Senthil

Thanks for letting me know! I appreciate your detailed explanation and examples. I'll fix the article ASAP! Once again thanks!

Collapse
 
oluebubechukwu profile image
Joy Joel O.

@sethusenthil thank you for well explained article.
I came here from Andrei's tutorial on data structure and algorithm - Udemy.

In your last code, there is you wrote 'var' instead of 'const' statement.

Collapse
 
rudreshhh profile image
Rudresh Jha

Same Buddy

Collapse
 
charlesschneider profile image
Charles Schneider

Great article!

I'm afraid that in your last code about const, you mistake const with var in line 4.

Thank you!