Hacker News new | ask | show | jobs
by goatlover 3246 days ago
How is isNaN() implemented?
1 comments

    function isNaN(x) { return x !== x }
It’s a native browser function so it may not actually be done that way, but that’s one way you could do it.