DEV Community

Cover image for Why Does NaN === NaN Return False in JavaScript?
Agunechemba Ekene
Agunechemba Ekene

Posted on

2 1 1

Why Does NaN === NaN Return False in JavaScript?

In JavaScript, NaN === NaN evaluates to false, which might seem strange at first. To understand this behavior, we need to explore what NaN represents and why it behaves this way.

What is NaN?
NaN stands for “Not-a-Number” and is used to represent the result of invalid or undefined numerical operations. For example:

console.log(0 / 0);       // NaN
console.log(Math.sqrt(-1)); // NaN

Enter fullscreen mode Exit fullscreen mode

Why Does NaN === NaN Return False?

According to the IEEE 754 floating-point standard, NaN is not equal to anything, including itself. This ensures that invalid results aren’t mistakenly treated as valid. In simple terms, NaN signals an error, and JavaScript treats it as incomparable to anything.

How to Check for NaN
Since direct comparisons won’t work, use these methods to check for NaN:

  • Global isNaN() – checks if a value is NaN or can be converted to it:
console.log(isNaN("abc"));    // true
Enter fullscreen mode Exit fullscreen mode
  • Number.isNaN() – specifically checks for NaN without conversion:
console.log(Number.isNaN(NaN)); // true
Enter fullscreen mode Exit fullscreen mode

Conclusion
NaN === NaN returns false because NaN represents an error, not a valid number. To check for NaN, use isNaN() or Number.isNaN() to avoid confusion and bugs.

Source

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay