当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


TypeScript Number toFixed()用法及代码示例



此方法使用小数点右侧的特定位数格式化数字。

用法

number.toFixed( [digits] )

参数详情

digits─ 小数点后出现的位数。

返回值

数字的字符串表示形式,不使用 index 表示法并具有小数点后的确切位数。

示例

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

相关用法


注:本文由纯净天空筛选整理自 TypeScript - Number toFixed()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。