NaN

JSにはNaNってのがある。
ゼロ除算とか数値ではない場合に発生する。
これは専用の判定メソッドがある。

var value = 0;
if(isNanN(value)){
    //NaNではない
}else{
    //NaNである
}