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

Image of Quadratic

Create interactive charts in seconds

Bring your own data or leverage historical data for fast Python-powered data visualizations in a familiar spreadsheet interface.

Try Quadratic free

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

👥 Ideal for solo developers, teams, and cross-company projects

Learn more

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay