DEV Community

Undefined vs. Null vs. Undeclared

Nashmeyah on March 29, 2021

A typical JavaScript interview question asks "What is the difference between a variable that is: null, undefined and undeclared?" Lets break each ...
Collapse
 
elijah1119 profile image
Elijah Thomas
let declaredValue = null;
 let undefinedValue;
 //undeclaredValue is not defined

 console.log(declaredValue === null) // true
 console.log(undefinedValue === undefined) //true
 console.log(typeof undeclaredValue === 'undefined') //true
Enter fullscreen mode Exit fullscreen mode