Skip to main content

Use of Var, Let and Const in Javascript

I have seen lot of people often making mistake in differentiating between "Var", "Let" and "Const"

1. Var (function scope)
It's a keyword used to declare variables that have a scope of Function block. In case we define it globally, it will have a Global Scope
Let's see how "var" works:
 function demo(){  
   var i = 10;  
   console.log("The value of i is:"+i);  
 }  
 demo()  
 console.log("Value of i after function call:"+i);  
In the above example, we are have defined a "var" within the function "demo()". So it means that it will be accessed only within this function. That's why the last line will give you an error as the scope of the variable is within the function.
Var (Global scope)
If we define the var at the top, it would have the global scope which means that it can be accessed in any function.
 var i = 10;  
 function demo(){  
   console.log("The value of i is:"+i);  
   i++;  
 }  
 demo()  
 console.log("Value of i after function call:"+i);  
In the above example we will be able to get the value of i = 11 as the i is have a global scope.
2. let 
Let has a scope within the {} brackets only. Let's take the following examples:
1st Example where we have same variable names defined with "var" and "let"
 var i = 10;  
 function demo(){  
   console.log("The value of i is:"+i);  
   i++;  
 }  
 demo()  
 console.log("Value of i after function call:"+i);  
 function anotherDemo(){  
   for(let i = 1; i <= 4; i++){  
     console.log(i);  
   }  
   console.log(i);  
 }  
 anotherDemo();  
In the above example, there will be no error, but the the value of i being printed in the function anotherDemo() and after loop will be of the "var" i being defined globally.
Let's take another example:
 function anotherDemo(){  
   for(let x = 1; x <= 4; x++){  
     console.log(x);  
   }  
   console.log(x);  
 }  
 anotherDemo();  
In the above example, the value of "x" being printed after the loop will be an error as the scope of the "let" was only inside the for loop.
3. Const
Constant is used to define values that are going to remain same or we can say they are immutable. For e.g. const pie = 3.14
I hope this clearly differentiates between these three keywords and we make more judicial use of these in Javascript.
For more information and personalized coaching, contact: dhandrohit@gmail.com






Comments

Popular posts from this blog

How to use QueryExtenderControl in ASP.NET with LINQ

Queryextender control is a control that helps in doing actions like filtration, searching, sorting etc. on the LINQ Data source with few steps. In fact we don’t have to write any code with this. Screenshot given below is just an example that can easily be achieved through this control. In the above screenshot, we can see that there is a GridView Control that has been binded to a LINQData Source Control. And we have a DropDownlistBox that is also binded to another LINQData Source Control and displaying only grouped jobs. The GridView display all the employees who are matching the Job Parameter. This is done through QueryExtender Control. Also we can search for any name in the employee name's through Query Extender control. The code in the HTML goes like: < form id ="form1" runat ="server">     < div >         Select Job: < asp : DropDownList ID ="Job" runat ="server" DataSourceID ="LinqDataSource2...

Using GUID or UniqueIdentifiers in SQL Server

In order to differentiate between two rows, we normally use primary keys or identity values which may be same across two tables. In order to overcome this problem we can use a special type named "GUID" . Its a hexadecimal number (Base 16) and the advantage is  that they are unique across all databases and tables.  In SQL Server the same concept is implemented through UNIQUEIDENTIFIER  data type. In order to generate a new value, we use the NEWID() function. For e.g.  a. Creating a table that uses the UNIQUEIDENTIFIER datatype Create table Test ( Empno uniqueidentifier, Ename varchar(20) ) b. Inserting rows in the tables with the use of NEWID() function insert into Test values (newId(),'ABC') insert into Test values (newid(),'XYZ') insert into test values (newid(),'MNO') c. Selecting the rows from the table. Select * from test  Empno                             ...

How to Delete Record through Knex.

This post is all about of deleting records through KNEX ORM in Nodejs. The following code shows how to achieve this: knex("depts").where("deptno","50").del() .then(function (count) {     console.log(count); }) .finally(function () {     knex.destroy(); }); The above code deletes a record from a table "Depts" where Deptno = 50. It has a "then" Promise attached that will show how many records were deleted with this command. Also "finally" is the method that will always execute and will close the KNEX connection. Happy Coding !!!