DEV Community

Cover image for Null vs. Undefined in JavaScript: The Ultimate Showdown
Sultan Akhter
Sultan Akhter

Posted on

Null vs. Undefined in JavaScript: The Ultimate Showdown

Welcome to the world of JavaScript, where null and undefined are the dynamic duo of nothingness! These two siblings might seem similar, but they have their own quirks and personalities. Let’s dive into this exciting world of JavaScript to uncover the differences between null and undefined, and see some fun examples along the way!

The Basics: What Are Null and Undefined?

In JavaScript, both null and undefined represent the absence of value, but they are not the same. Think of undefined as a mischievous imp who forgets to show up, while null is a cool cat who intentionally decides to sit out.

Undefined: This is JavaScript’s default way of saying, “Oops, we forgot to give this a value.” It happens when you declare a variable but don’t assign anything to it.

Image description

Null: This is used by developers to say, “This should have no value.” It’s an intentional absence of any value.

Image description

The Quirky Differences

Type Check:

The typeof undefined returns 'undefined' but typeof null returns 'object'. Yes, it’s weird and it’s a known bug!

Image description

Equality Check:

null == undefined returns true. They’re considered loosely equal.
null === undefined returns false. Strict equality shows their differences.

Image description

Use Cases:

Use undefined for uninitialized variables, missing parameters, or default returns.

Image description

Use null when you want to explicitly state that a variable should be empty.

Image description

Summary

undefined: Default for uninitialized variables.
null: Explicitly assigned to signify no value.
Type Check: typeof undefined is "undefined", typeof null is "object".
Equality Check: null == undefined is true, null === undefined is false.
Use Cases: Use undefined for missing values; use null for intentional emptiness.
Now, armed with this knowledge, you’re ready to navigate the fascinating world of JavaScript with null and undefined by your side. Happy coding!

If you want to learn/revise about the basics of Javascript, follow me and checkout some other articles related to the basic concept of Javascript.
Follow me on linked in for daily Js quiz questions.

Top comments (0)