2020-05-14
描述
将一数字四舍五入到指定的位数。
提示
- 使用
Math.round()
和字符串模版将数字四舍五入到指定位数 - 第二个参数
decimals
的默认值为 0,即四舍五入为整数
代码
const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`);
示例
保留 2 位小数:
round(1.005, 2); // 1.01
2020-05-14
将一数字四舍五入到指定的位数。
Math.round()
和字符串模版将数字四舍五入到指定位数decimals
的默认值为 0,即四舍五入为整数const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`);
保留 2 位小数:
round(1.005, 2); // 1.01