/

toLocaleString() 方法

toLocaleString() 方法

了解 JavaScript 的 toLocaleString() 方法

根據不同的地區設定格式化一個數字。

預設地區是美國英語:

1
new Number(21.2).toLocaleString() // 21.2

可以將地區作為第一個參數傳入:

1
new Number(21.2).toLocaleString('it') // 21,2

這是東部阿拉伯語:

1
new Number(21.2).toLocaleString('ar-EG') // ٢١٫٢

還有其他一些選項可以添加,建議查看 MDN 的頁面 以了解更多。

tags: [“JavaScript”, “toLocaleString”, “地區設定”]