The Intl.NumberFormat.prototype.format
property returns a getter function that formats a number according to the locale and formatting options of this NumberFormat
object.
numberFormat.format(number)
number
The function returned by the format
getter formats a number into a string according to the locale and formatting options of this NumberFormat
object.
format
Use the function returned by the format
getter for formatting a single currency value, here for Russia:
var options = { style: 'currency', currency: 'RUB' }; var numberFormat = new Intl.NumberFormat('ru-RU', options); console.log(numberFormat.format(654321.987)); // → "654 321,99 руб."
format
with map
Use the function returned by the format
getter for formatting all numbers in an array. Note that the function is bound to the NumberFormat
from which it was obtained, so it can be passed directly to Array.prototype.map
.
var a = [123456.789, 987654.321, 456789.123]; var numberFormat = new Intl.NumberFormat('es-ES'); var formatted = a.map(numberFormat.format); console.log(formatted.join('; ')); // → "123.456,789; 987.654,321; 456.789,123"
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 24 | 29 (29) | 11 | 15 | 10 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | 26 | 54.0 (54) | No support | No support | 10 |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat/format