Home > @taiyuuki/utils > math_to_fixed
math_to_fixed() function
该函数返回一个四舍五入到指定小数位数的数字。
Signature:
typescript
declare function math_to_fixed(n: number, digit?: number): number;
declare function math_to_fixed(n: number, digit?: number): number;
Parameters
Parameter | Type | Description |
---|---|---|
n | number | 需要四舍五入到小数点后固定位数的数字。 |
digit | number | (Optional) 给定数字应四舍五入到小数点后的位数。如果没有为 digit 提供值,则默认为 0,这意味着数字将四舍五入到最接近的整数。 |
Returns:
number
函数“math_to_fixed”返回一个数字,该数字已四舍五入到小数点后的指定位数。小数点后的位数由 digit 参数决定,如果不指定则默认为 0。