JavaScript数字取整

4年以前  |  阅读数:767 次  |  编程语言:JavaScript 
3.3 | 0         // 3
-3.9 | 0        // -3

parseInt(3.3)  // 3
parseInt(-3.3) // -3

// 四舍五入取整
Math.round(3.3) // 3
Math.round(-3.3) // -3

// 向上取整
Math.ceil(3.3) // 4
Math.ceil(-3.3) // -3

// 向下取整
Math.floor(3.3) // 3
Math.floor(-3.3) // -4

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8