此方法使用小数点右侧的特定位数格式化数字。
用法
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 toPrecision()用法及代码示例
- TypeScript Number toExponential()用法及代码示例
- TypeScript Number toString()用法及代码示例
- TypeScript Array forEach()用法及代码示例
- TypeScript Array map()用法及代码示例
- TypeScript Array indexOf()用法及代码示例
- TypeScript String concat()用法及代码示例
- TypeScript String charCodeAt()用法及代码示例
- TypeScript Array unshift()用法及代码示例
- TypeScript Array reduce()用法及代码示例
- TypeScript Array slice()用法及代码示例
- TypeScript String slice()用法及代码示例
- TypeScript String split()用法及代码示例
注:本文由纯净天空筛选整理自 TypeScript - Number toFixed()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。