美文网首页
js四舍五入取整

js四舍五入取整

作者: 瓢鳍小虾虎 | 来源:发表于2022-08-05 12:01 被阅读0次

四舍五入:
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四舍五入取整

      本文链接:https://www.haomeiwen.com/subject/tszoxrtx.html