js精确到指定位数的小数

2021-01-28 23:16

阅读:378

标签:keyword   nan   math   ons   nbsp   使用   string   uil   const   

将数字四舍五入到指定的小数位数。使用 Math.round() 和模板字面量将数字四舍五入为指定的小数位数。 省略第二个参数 decimals ,数字将被四舍五入到一个整数。

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.html


评论


亲,登录后才可以留言!