Skip to content

Understanding JavaScript Variables: let, const, and var

JavaScript provides three ways to declare variables: let, const, and var. Each has its own characteristics and use cases. Let’s explore them in detail.

Quick Comparison

Here’s a quick overview of the key differences:

KeywordGlobal ScopeFunctional ScopeBlock ScopeCan be reassignedCan be re-declared
letNoYesYesYesNo
constNoYesYesNoNo
varYesYesNoYesYes

Understanding var

The var keyword was the original way to declare variables in JavaScript. Let’s explore its characteristics:

1. Global and Local Scope

// Global scope example
var number = 50;
function print() {
var square = number * number;
console.log(square);
}
console.log(number); // 50
print(); // 2500
// Local scope example
function print() {
var number = 50;
var square = number * number;
console.log(square);
}
print(); // 2500
console.log(number); // ReferenceError: number is not defined

2. Redeclaration and Reassignment

var variables can be both redeclared and reassigned:

// Redeclaration
var number = 50;
console.log(number); // 50
var number = 100;
console.log(number); // 100
// Reassignment
var count = 50;
count = 100;
count = 200;
console.log(count); // 200

3. Hoisting

var variables are hoisted to the top of their scope:

console.log(number); // undefined
var number = 50;
console.log(number); // 50
function print() {
console.log(square1); // undefined * undefined: NaN
var number = 50;
var square1 = number * number;
console.log(square2); // 2500
}

Understanding let

let was introduced in ES6 and provides block-scoped variables:

1. Block Scope

let number = 50;
function print() {
let square = number * number;
if (number < 60) {
var largerNumber = 80;
let anotherLargerNumber = 100;
console.log(square); // 2500
}
console.log(largerNumber); // 80
console.log(anotherLargerNumber); // ReferenceError: anotherLargerNumber is not defined
}

2. Reassignment (but not Redeclaration)

// Reassignment is allowed
let number = 50;
number = 100;
console.log(number); // 100
// Redeclaration is not allowed
let count = 50;
let count = 100; // SyntaxError: Identifier 'count' has already been declared

3. No Hoisting

console.log(number); // ReferenceError: Cannot access 'number' before initialization
let number = 50;

Understanding const

const is used for values that shouldn’t be reassigned:

1. Block Scope

const number = 50;
function print() {
const square = number * number;
if (number < 60) {
const anotherLargerNumber = 100;
console.log(square); // 2500
}
}

2. No Reassignment or Redeclaration

// Cannot reassign
const number = 50;
number = 100; // TypeError: Assignment to constant variable
// Cannot redeclare
const count = 50;
const count = 100; // SyntaxError: Identifier 'count' has already been declared

3. No Hoisting

console.log(number); // ReferenceError: Cannot access 'number' before initialization
const number = 50;

Best Practices

  1. Use const by default: Start with const for all variables. This prevents accidental reassignment and makes your code’s intent clearer.
  2. Use let when you need reassignment: If you know a variable’s value will change, use let.
  3. Avoid var: Modern JavaScript rarely needs var. Its function-scoping and hoisting behavior can lead to bugs.
  4. Block Scope is Your Friend: Use block scope with let and const to keep variables contained and prevent naming conflicts.

Example Usage Pattern

Here’s a typical pattern showing when to use each:

// Use const for values that won't change
const API_URL = "https://api.10xtechinfinity.in";
const MAX_ITEMS = 100;
// Use let for values that will change
let currentUser = null;
let itemsCount = 0;
function processItems() {
// Block-scoped counter with let
for (let i = 0; i < MAX_ITEMS; i++) {
// Process items
itemsCount++;
}
// i is not accessible here (block scope)
console.log(itemsCount); // Accessible because it's in function scope
}

Conclusion

Understanding the differences between let, const, and var is crucial for writing maintainable JavaScript code. Remember:

  • Use const by default
  • Use let when you need reassignment
  • Avoid var in modern code
  • Leverage block scope for better code organization

This knowledge will help you write more predictable and maintainable JavaScript code while avoiding common pitfalls related to variable declarations and scope.

Happy Learning!