此方法使用小數點右側的特定位數格式化數字。
用法
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。