Global Object

.toFixed()

2023-07-12

保留小数位数, 同时把数据改成字符串类型。

使用

var num = 3.1415926;
console.log(num.toFixed(2)); // '3.14'