JS将浮点数取整数函数
in 前端开发 with 0 comment
JS将浮点数取整数函数
in 前端开发 with 0 comment

 取整数函数。今天收集的。编程中不可缺少的函数。也是常用到的。

1.parseInt(str)


例子:

alert(parseint(3.5));//弹出3

2.Math.ceil(number) //返回大于等于其数值参数的最大整数。


例子:

alert(Math.ceil(3.5));//弹出4


3.Math.floor(number) //返回小于等于其数值参数的最大整数。


例子:

alert(Math.floor(3.5));//弹出3


4.Math.round(number) //四舍五入


例子:

alert(Math.round(3.5));//弹出4

Responses