W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
toFixed()方法格式化一個(gè)小數(shù)點(diǎn)右側(cè)具有特定位數(shù)的數(shù)字。
number.toFixed( [digits] )
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
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: