JavaScript toFixed() 实现四舍五入保留两位小数

2021-02-04 13:14

阅读:427

标签:java   str   span   color   返回值   log   const   pre   tofixed   

const num = 18.186;
let result;
result = num.toFixed(2)
console.log(result)  // 18.19

注意,返回值为String类型

JavaScript toFixed() 实现四舍五入保留两位小数

标签:java   str   span   color   返回值   log   const   pre   tofixed   

原文地址:https://www.cnblogs.com/boystao/p/12794854.html


评论


亲,登录后才可以留言!