码迷,mamicode.com
首页 > Web开发 > 详细

JS保留小数 去尾法 进一法 四舍五入法

时间:2018-06-11 23:34:45      阅读:1425      评论:0      收藏:0      [点我收藏+]

标签:number   pre   col   type   UNC   nbsp   floor   prot   style   

//toFixed 四舍五入遇到坑。

1.235.toFixed(2) = 1.23
1.2350001.toFixed(2) = 1.24

 

//去尾法
Number.prototype.toFloor = function (num) {
return Math.floor(this * Math.pow(10, num)) / Math.pow(10, num);
};

//进一法
Number.prototype.toCeil = function (num) {
return Math.ceil(this * Math.pow(10, num)) / Math.pow(10, num);
};

//四舍五入法
Number.prototype.toRound = function (num) {
return Math.round(this * Math.pow(10, num)) / Math.pow(10, num);
};

 

JS保留小数 去尾法 进一法 四舍五入法

标签:number   pre   col   type   UNC   nbsp   floor   prot   style   

原文地址:https://www.cnblogs.com/LChenglong/p/9170334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!