toFixed ( )方法
123
·
定义:
toFixed() 方法可把 Number
四舍五入为指定小数位数的数字。
语法:
Number.toFixed(num)
Number:使用toFixed()方法的必须是数值类型,否则会报错
参数:
num :必需。规定小数的位数,是 0 ~ 20 之间的值,包括 0 和 20,有些实现可以支持更大的数值范围。如果省略了该参数,将用 0 代替。
使用:
let a=3.8899
console.log(a.toFixed('2'))//3.90
console.log(a.toFixed())//4
//可以用于对钱的格式转换(元角分):
//如:
原价钱:a=4
现价:a.toFixed(2) //4.00
更多推荐
已为社区贡献1条内容
所有评论(0)