Check for NaN, null and >=0 in one condition

后端 未结 7 1827
一个人的身影
一个人的身影 2021-02-15 14:32

I have a var a;

Its value can be NaN, null and any +ve/-ve number including 0.

I require a condition which filters out all the values of a such that

7条回答
  •  闹比i
    闹比i (楼主)
    2021-02-15 14:39

    Ohk ...But i actually found the ans .. it is so Simple .

    parseInt(null) = NaN.

    So if(parseInt(a)>=0){} would do ...Yayyee

提交回复
热议问题