当前位置: 代码迷 >> JavaScript >> Javascript Math ceil()、floor()、round()三个函数的差异
  详细解决方案

Javascript Math ceil()、floor()、round()三个函数的差异

热度:968   发布时间:2012-09-21 15:47:26.0
Javascript Math ceil()、floor()、round()三个函数的区别

Javascript Math ceil()、floor()、round()三个函数的区别

Round是四舍五入的。。。Ceiling是向上取整。。float是向下取整
 
-
ceil():将小数部分一律向整数部分进位。
如:

Math.ceil(12.2)//返回13
Math.ceil(12.7)//返回13
Math.ceil(12.0)// 返回12

floor():一律舍去,仅保留整数。
如:

Math.floor(12.2)// 返回12
Math.floor(12.7)//返回12
Math.floor(12.0)//返回12

round():进行四舍五入
如:

Math.round(12.2)// 返回12
Math.round(12.7)//返回13
Math.round(12.0)//返回12
  相关解决方案