摘要: js只保留整数,向上取整,四舍五入,向下取整等函数1.丢弃小数部分,保留整数部分parseInt(5/2)2.向上取整,有小数就整数部分加1Math.ceil(5/2)3,四舍五入.Math.round(5/2)... 阅读全文
posted @ 2018-08-18 22:12 阿明先森 阅读(135) 评论(0) 推荐(0) 编辑
摘要: js只保留整数,向上取整,四舍五入,向下取整等函数1.丢弃小数部分,保留整数部分parseInt(5/2) 2.向上取整,有小数就整数部分加1 Math.ceil(5/2) 3,四舍五入. Math.round(5/2) 4,向下取整 Math.floor(5/2) Math 对象的方法 方法 描述 阅读全文
posted @ 2018-08-18 22:10 阿明先森 阅读(10296) 评论(0) 推荐(12) 编辑