第一种:传统型
使用Math对象的floor方法。
Math.floor(testnum)
第二种:
使用~~运算符对类型转换。
~~testnum
第三种:
比较常用的。或零运算。
testnum | 0