https://blog.csdn.net/vasilis_1/article/details/78613086
上面是五种,但是用来判断例如 5.0就无法判断是整数 ,故加一种
// 判断是否为整数
function isInteger (num) {
var x = String(num)
var y = String(x).length
console.log(x.slice(y-1))
if(x.slice(y-1) == '0') {
return true
} else {
return false
}
}