js精确到指定位数的小数
2021-01-28 23:16
标签:keyword nan math ons nbsp 使用 string uil const 将数字四舍五入到指定的小数位数。使用 const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`) round(3.1415926535897932384626433832, 2) // 3.14 round(3.1415926535897932384626433832, 19) // 3.141592653589793 round(3.1415926535897932384626433832, 20) // 3.141592653589793 round(3.1415926535897932384626433832, 21) // NaN 注意:第21位就为NaN js精确到指定位数的小数 标签:keyword nan math ons nbsp 使用 string uil const 原文地址:https://www.cnblogs.com/zyz-s/p/13206838.htmlMath.round()
和模板字面量将数字四舍五入为指定的小数位数。 省略第二个参数 decimals
,数字将被四舍五入到一个整数。