TypeScript Number方法toFixed()

2019-01-09 14:21 更新

TypeScript Number方法 toFixed()

toFixed()方法格式化一個(gè)小數(shù)點(diǎn)右側(cè)具有特定位數(shù)的數(shù)字。

語(yǔ)法

number.toFixed( [digits] )

參數(shù)詳情

digits - 小數(shù)點(diǎn)后顯示的位數(shù)。

返回值

數(shù)字的字符串表示形式,不使用指數(shù)表示法,并且在小數(shù)位之后具有確切的位數(shù)。

示例

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))

在編譯時(shí),它將在JavaScript中生成相同的代碼。

代碼將產(chǎn)生以下輸出:

num3.toFixed() is 177 
num3.toFixed(2) is 177.23 
num3.toFixed(6) is 177.234000
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)