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);
};
发布评论