JS中的保留小数位数方法

保留两位小数

方法1:四舍五入的情况下
Math.round


image

100表示2位小数,据此可知保留一位小数就把系数改为10

方法2:不四舍五入
运用floor方法进行向下取整


image

方法3:tofixed
保留指定小数位数,四舍六入五留双法


image

num.toFixed(2)括号中表示要保留多少位

向上取整

Math.ceil


image

向下取整

Math.floor


image

你可能感兴趣的:(JS中的保留小数位数方法)