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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-10-07
  • 2021-06-28
  • 2021-11-28
猜你喜欢
  • 2021-07-02
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2021-09-07
相关资源
相似解决方案