在JavaScript 中精確格式化數字
要在JavaScript 中顯示精確到兩位小數的數字,可以利用toFixed() 方法。方法如下:
var price = 10.8; var formattedPrice = price.toFixed(2); // "10.80"
請注意,toFixed() 傳回一個字串,而不是數字。
toFixed() 的限制
而 toFixed () 可以正確舍入大多數數字,但它並非在所有情況下都一致舍入。例如:
2.005.toFixed(2) === "2.00"
用於精確格式化的Intl.NumberFormat
對於精確數字格式化,建議使用 Intl.NumberFormat 建構子。它在現代瀏覽器(包括 IE11)和 Node.js 中完全支援:
const formatter = new Intl.NumberFormat('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2, }); console.log(formatter.format(2.005)); // "2.01" console.log(formatter.format(1.345)); // "1.35"
與 toFixed() 相比,Intl.NumberFormat 在數位格式方面提供了更多控制和一致性。
以上是如何在 JavaScript 中將數字精確格式化為小數點後兩位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!