← Back tothis vs that

variable === undefined vs typeof variable === "undefined"

Written byPhuoc Nguyen
Created
07 Aug, 2020
Category
JavaScript
There are two common ways to check whether a variable is `undefined`. We can use the identical (`===`) or `typeof` operator:
js
variable === undefined;
typeof variable === 'undefined';

Difference

The `typeof` operator works with undeclared variables, while the identical operator will throw a ReferenceError exception.
js
typeof undeclaredVar === 'undefined'; // true
undeclaredVar === undefined; // throws a ReferenceError exception

Good to know

In the old browsers running ES3 enginee, `undefined` is a global variable name whose primitive value is undefined. The value can be changed:
js
// ES3
var person = {};
person.name === undefined; // true

// Let's modify the value of undefined
undefined = 'Foo';
person.name === undefined; // false
In order to avoid the issue where `undefined` can be renamed or modified the value, we can wrap the code in an IFFE (immediately invoked function expression) as following:
js
(function(undefined){
// It's safe to use undefined here
})();

// Or
(function(undefined){
...
})(_);
In the sample code above, `undefined` is a parameter of function. Since we don't pass any parameter or an undefined variable (`_`) to the function, the parameter will be undefined. This common pattern was used in popular libraries such as jQuery, Backbone, etc.
It's not the case in modern browsers nowadays. From ES5, `undefined` can't be changed because its `Writable` property is set to `false`.

Good practice

Always use `typeof`.

See also

If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn