Intl.NumberFormat.prototype.format
Baseline
Widely available
*
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2017年9月.
* Some parts of this feature may have varying levels of support.
Intl.NumberFormat.prototype.format 属性返回一个根据NumberFormat对象的语言环境和格式化选项,来格式化一个数字的 getter 函数。
尝试一下
语法
numberFormat.format(number)
参数
number-
要格式化的数值。
描述
该函数返回一个根据NumberFormat对象的语言环境和格式化选项,来format 一个数字的函数。
示例
使用 format
使用 format 格式化一个单一的货币值,以俄罗斯为例:
使用 format 和 map
使用 format 返回的函数来格式化数组中的所有数字。注意,该函数绑定到所获得的NumberFormat,因此它可以直接传递给Array.prototype.map。
规范
| Specification |
|---|
| ECMAScript® 2026 Internationalization API Specification # sec-intl.numberformat.prototype.format |