保留两位小数
方法1:四舍五入的情况下
Math.round
100表示2位小数,据此可知保留一位小数就把系数改为10
方法2:不四舍五入
运用floor方法进行向下取整
方法3:tofixed
保留指定小数位数,四舍六入五留双法
num.toFixed(2)括号中表示要保留多少位
向上取整
Math.ceil
向下取整
Math.floor
方法1:四舍五入的情况下
Math.round
100表示2位小数,据此可知保留一位小数就把系数改为10
方法2:不四舍五入
运用floor方法进行向下取整
方法3:tofixed
保留指定小数位数,四舍六入五留双法
num.toFixed(2)括号中表示要保留多少位
Math.ceil
Math.floor