Fundamentals of let, const, var 馃殌

khalidhossain

khalid

Posted on September 29, 2022

Fundamentals of let, const, var 馃殌

Variables: Variables in JavaScript are containers for storing data. JavaScript allows the usage of variables in the following three ways:

var:

var is the most commonly used variable in JavaScript. It can be initialized to a value, redeclared and its value can be reassigned, but only inside the context of a function. It can be function scoped or globally scoped.

using var

let:

let in JavaScript is similar to var only difference lies in the scope. var is function scoped, let is block scoped. It cannot be redeclared but can be reassigned a value.

Using let

const:

const in JavaScript is used to declare a fixed value that cannot be changed over time once declared. They can neither be redeclared nor be reassigned. They cannot be hoisted either.

Using const

馃摙Connect with me on LinkedIn馃殌

馃挅 馃挭 馃檯 馃毄
khalidhossain
khalid

Posted on September 29, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related