赞
踩
Math.floor()
向下取整- Math.floor(-13.5) //-14
- Math.floor(5.89) //5
Math.ceil()
向上取整
- Math.ceil(2.12) //3
- Math.ceil(-2.12) //-2
Math.round() 四舍五入
- Math.round(3.14159) //3
- Math.round(3.689) //4
parseInt() 去掉小数点和小数点后的部分
- parseInt(2.14568) //2
- parseInt(5.88) //5
~~
取反运算符
- ~~-13.5 //-13
- ~~ 13.5 //13
- ~~ 12.2 //12
- 13.8 >> 0 // 13
- -13.8>> 0 // -13
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。