Swizec Teller - a geek with a hatswizec.com

Senior Mindset Book

Get promoted, earn a bigger salary, work for top companies

Senior Engineer Mindset cover
Learn more

    NaN does not equal NaN

    For the second time today I noticed someone on twitter berating javascript over this little connundrum:

    > NaN == NaN
    false
    > NaN === NaN
    false
    > NaN !== NaN
    true
    >
    

    Counterintuitively, it would seem that NaN does not equal NaN. But let's think about this for a second. Is it really that strange or just a symptom of what the logical symbol NaN actually stands for?

    Thing is, NaN stands for "Not a Number" and if memory serves comes right out of IEEE754 floating point arithmetic. It's very handy for representing things like 0/0, different kinds of infinity and operations involving infinities. In short, it represents an undefinable number.

    Now, what could possibly be the result of comparing two undefinable numbers?

    Mathematically, I have no idea what the result should be ... probably something we simply agreed upon? Like how the 0th power is 1. But in my naive understanding of these things it should produce random results. However, JavaScript is kind enough to always claim that NaN does not equal NaN, if for naught else than to remind us we are trying to do something stupid.

    Can anyone tell me if other languages handle this differently? Just produce an error of some sort?

    Also, please share this post with your local JavaScript newbie, I die a little every time I see that sort of tweet.

    Enhanced by Zemanta
    Published on September 27th, 2011 in Uncategorized

    Did you enjoy this article?

    Continue reading about NaN does not equal NaN

    Semantically similar articles hand-picked by GPT-4

    Senior Mindset Book

    Get promoted, earn a bigger salary, work for top companies

    Learn more

    Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.

    Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.

    Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help 👉 swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.

    Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers 👉 ServerlessHandbook.dev

    Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization

    Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections

    Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog

    Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com

    By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️

    Created by Swizec with ❤️