JS保留⼩数去尾法进⼀法四舍五⼊法//toFixed 四舍五⼊遇到坑。
Fixed(2) = 1.23
Fixed(2) = 1.24
//去尾法
Floor = function (num) {
return Math.floor(this * Math.pow(10, num)) / Math.pow(10, num);
};
//进⼀法
Ceil = function (num) {
il(this * Math.pow(10, num)) / Math.pow(10, num);
};
/
/四舍五⼊法
为什么cf进不去Round = function (num) {
und(this * Math.pow(10, num)) / Math.pow(10, num);
};
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论