ES5的方法
function isInt(n){
return oarseInt(n,10) === n;
//返回true是整数,返回false不是
}
ES6的方法
//新增的API isInteger
Number.isInteger(n)
Math.tunc()
会将数字的小数部分去掉,只保留整数部分,性能比parseInt()好
function isInt(n){
return oarseInt(n,10) === n;
//返回true是整数,返回false不是
}
//新增的API isInteger
Number.isInteger(n)
会将数字的小数部分去掉,只保留整数部分,性能比parseInt()好
本文标题:判断一个数字是不是整数
本文链接:https://www.haomeiwen.com/subject/tcdlfhtx.html
网友评论