js四舍五入取整

四舍五入:
Math.round()
向下取整:
Math.floor()
向上取整:
Math.ceil()

四舍五入封装函数:

function  getRound(n, m) { // n小数,支持字符串'123.456'形式,m保留位数
if (isNaN(n)) return NaN; // null '' ' '会被视作0,字符串'123'会被看成123
let r = n > 0 ? (+(Math.round(n + "e" + m)  + "e-" + m)).toFixed(m) : -((+(Math.round(-n + "e" + m)  + "e-" + m)).toFixed(m));
return Number(r);
}

参考:
https://www.jianshu.com/p/e7c445e585f7

你可能感兴趣的:(js四舍五入取整)