Tagged Questions
20
votes
11answers
6k views
Why does isNaN(“ ”) equal false
I have a quick question (I hope!). In JS, why does isNaN(" ") evaluate to false, but isNaN(" x") evaluate to true?
I'm performing numerical operations on a text input field, and am checking if ...