TypeScript Number方法toFixed()
2019-01-09 14:21 更新
TypeScript Number方法 toFixed()
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
以上内容是否对您有帮助:
更多建议: