Undefined or not defined?

utkarshyadav

Utkarsh Yadav

Posted on October 27, 2021

Undefined or not defined?

Table of Content

  • What is Undefined in JavaScript?
  • What is 'defined` in JavaScript ?
  • Difference between the both.

Undefined

Undefined is simply a Placeholder that is initialise to every variable at the time of memory execution in Global Execution Context.

Example:


console.log(a); // undefined
var a = 7; // Assign value 7 to a
console.log(a); // Log --> 7 on Screen

Not Defined

This is like an error, occurs when the code is trying to access the variable that is never been there in memory.

is
var b = 7; // Assign value 7 to b
console.log(a); // not defined

Difference Between Undefined and Not Defined

In JavaScript, they both are related to memory space and there is a very simple difference between them. If the variable name which is being accessed doesn’t exist in memory space then it would be not defined, and if exists in memory space but hasn’t been assigned any value till now, then it would be undefined.

So, Hope you got to know the simple difference between the two Jargons.

Don't stop learning, Keep exploring and learning.

💖 💪 🙅 🚩
utkarshyadav
Utkarsh Yadav

Posted on October 27, 2021

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

Sign up to receive the latest update from our blog.

Related