4

Differences between Let Var Const that you didnt know - ES6 [Video + Article]

 2 years ago
source link: https://www.tharunshiv.com/var-let-const/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
1 August 2020/web development

Differences between Let Var Const that you didnt know - ES6 [Video + Article]

30.png

In this post we will discuss the differences between the let, var and const along with code examples and their outputs

Video:

Consider subscribing to the Youtube Channel if you find it helpful 😊 https://youtube.com/c/developerTharun

What are Let Var and Const

In order to use a variable in JavaScript, you will have to declare that variable. Before ES6, we had only var using which we used to declare variables. From ES6 onwards let and const were introduced and there are some significant differences that you need to know among these.

The differences

We will look at the differences in three aspects:

  1. Function or block scoped
  2. Redeclaring
  3. Redefining

1. Function or block scoped

Var: Function scoped: This means that once a variable is declared using var, it is accessible anywhere within that function. This sounds nice, but we will face problem when we use var in a for-loop, and the variable leaks out.

for (var i = 0; i < 5; i++) {
  console.log(i);
}

console.log(i); // i is still accessible here

Output

0
1
2
3
4
5

Let: Block Scoped: A block is nothing but a piece of code that is enclosed by the curly braces { }. So when a variable is declared using the let, it will stay within that block and doesn’t leak out.

for (let i = 0; i < 5; i++) {
  console.log(i);
}

console.log(i); // the variable i is not accessible here

Output

0
1
2
3
4
console.log(i);
            ^
ReferenceError: i is not defined

Const: Block Scoped: The variable declared with const has a block scope just like let, and isn’t accessible outside the scope.

{
  const i = 10;
  console.log(i);
}

console.log(i);

Output

10
console.log(i);
            ^
ReferenceError: i is not defined

2. Redeclaring

Var: Can be Redeclared: The variables declared using var can be declared again using var anywhere in the program.

var cat = 'meow';
var cat = 'psssss'; // no error

Let: Cannot be Redeclared: The variables declared using let cannot be redeclared within the same scope of it.

let dog;

let dog; // causes error

Output

let dog;
    ^
SyntaxError: Identifier 'dog' has already been declared

Const: Cannot be Redeclared: The variables declared using const cannot be redeclared within the same scope of it.

const lion;

const lion; // causes error

Output

const lion;
      ^
SyntaxError: Identifier 'lion' has already been declared

3. Redefining

Var: can be redefined: Defining is different from declaring in the sense that, defining assigns a value to the variable.

var dog = 'boww';
dog = 'voww'; // no error

Let: can be redefined: Defining is different from declaring in the sense that, defining assigns a value to the variable.

let cat = 'meow';
cat = 'prrr'; // no error

Const: cannot be redefined: This results in an error. This applied to the scope only.

const lion = 'roar';
lion = 'rooor'; // cannot redefine

Output

const lion = "roooor";
      ^
SyntaxError: Identifier 'lion' has already been declared

Summary

Summary

If you liked this article, give it a ❤ 🦄 and Save it for later. Subscribe to my YouTube Channel if you like it https://youtube.com/c/developerTharun

You might like this

https://dev.to/tharunshiv/4-ways-to-use-generator-functions-in-javascript-examples-advantages-2ohd

Considering Subscribing to my YouTube Channel if you like the video content: https://youtube.com/c/developerTharun 😊

Written by, Tharun Shiv

Follow my articles on Dev.to: https://dev.to/developertharun

Read about 9 ways in which you can build like Facebook! Facebook’s new Tech Stack revealed! https://www.tharunshiv.com/new-tech-stack-facebook


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK