Hi everyone,

I just found something interesting in my code but I ain't sure why JavaScript.

var input= 0;  // But in my case, the input variable is getting the value from a field in a form

if(!Number(input)){

    document.write('it is not a ZERO');
}

This is something similar to my code.

Cheers,

Recommended Answers

All 6 Replies

...and the problem is?

the problem is the body of the if-statement gets executed which I don't want to happen.
I'm only checking if it is not a number then execute the if-statement body. Else, Go to the next condition.

try the built-in function

isNaN(input)

Checking for values if they're Nan. What's nan by the way?

Literally, NaN stands for not a number.

NaN is a javascript object returned when a value treated as a number fails to convert to number. Basically it is not a number. Whereas the type of NaN it self, is - a number container that has no value. (It's not even a zero).

It's a box of numbers alright - but it's empty. Therefore (another) NaN is never equal to (previous/following) NaN, because it's a different box.

You cannot check if( Number("1.a") == NaN )
That's why isNaN() function was needed.

Though NaN==NaN >> is always false!
It's not a Voodoo..., since NaN is an Object;

It's the same as with other empty objects, say: []==[] >> false! They mey be equal in the sense of emptyness and type etc, alas, they are not the same "box". They are different instances of that type of objects.

Contrary to abstractions that can be equal, say 1==1 > true, -since all the 1's of the world are that same 1 (one). That is, the same abstraction. They (NaN's), will be compared by instances, not by values { as in say Number(1)==Number(1) >> true}, because there is a value of the same type that can be compared there. And since they belong to the same abstraction (1) they are the same. >> true!

p.s.:
There are a lot of highly "professional coders" that don't understand the half of it. And ask questions like: why is the typeof NaN >> "number" - this is a mistake! etc...
Yet, no other statement can be as far from the truth as this one is.

Never worked out the abbreviation NaN. Thanks for the answer and the thread needs to be closed and solved.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.