How do I check that a number is float or integer?

前端 未结 30 2561
栀梦
栀梦 2020-11-22 00:01

How to find that a number is float or integer?

1.25 --> float  
1 --> integer  
0 --> integer  
0.25 --> float
<         


        
30条回答
  •  你的背包
    2020-11-22 00:36

    var isInt = function (n) { return n === (n | 0); };
    

    Haven't had a case where this didn't do the job.

提交回复
热议问题