TypeScript 数字 toFixed()方法
该方法将一个数值格式化为小数点右侧指定位数的数字。
语法
number.toFixed( [digits] )
参数详情
digits - 小数点后要显示的位数。
返回值
一个字符串表示数字,不使用指数表示法,并且小数点后有精确的位数。
示例
var num3 = 177.234
console.log("num3.toFixed() is "+num3.toFixed())
console.log("num3.toFixed(2) is "+num3.toFixed(2))
console.log("num3.toFixed(6) is "+num3.toFixed(6))
编译后,它将生成相同的JavaScript代码。
代码将产生以下输出 –
num3.toFixed() is 177
num3.toFixed(2) is 177.23
num3.toFixed(6) is 177.234000