js 的数学处理方法

1、javascript取整方法floor、round、ceil

  floor向下取整:  

Math.floor(0.20); // 0Math.floor(0.90); // 0Math.floor(-0.90); // -1Math.floor(-0.20); // -1

  round四舍五入

Math.round(0.2) // 0Math.round(0.9) // 1Math.round(-0.9) // -1Math.round(-0.2) // 0

  ceil向上取整

Math.ceil(0.2) // 1Math.ceil(0.9) // 1Math.ceil(-0.9) // 0Math.ceil(-0.2) // 0

 


上一篇:Linux下 PostgrelSQL 基本操作


下一篇:Wild Card之前和之后的Wild Card – MySql,PSQL