mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-11 08:54:07 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
740 B
740 B
round
将一个数字四舍五入到指定的精度。
该函数接受一个数字和一个可选的精度值,返回将数字四舍五入到指定小数位数的结果。
签名
function round(value: number, precision?: number): number;
参数
- value (
number
): 要四舍五入的数字。 - precision (
number
, 可选): 要四舍五入到的小数位数。默认为0
。
返回值
(number
): 四舍五入后的数字。
示例
const result1 = round(1.2345); // result1 将会是 1
const result2 = round(1.2345, 2); // result2 将会是 1.23
const result3 = round(1.2345, 3); // result3 将会是 1.235
const result4 = round(1.2345, 3.1); // 这将会抛出一个错误