Intl.NumberFormat.prototype.format()

El método Intl.NumberFormat.prototype.format() formatea un número de acuerdo con la configuración regional y las opciones de formato de este objeto NumberFormat (en-US).

Pruébalo

Sintaxis

numberFormat.format(number)

Parametros

number

A Number or BigInt to format.

Descripción

The format getter function formats a number into a string according to the locale and formatting options of this NumberFormat (en-US) object.

Ejemplos

Usando format

Use the format getter function for formatting a single currency value, here for Russia:

js
var options = { style: "currency", currency: "RUB" };
var numberFormat = new Intl.NumberFormat("ru-RU", options);
console.log(numberFormat.format(654321.987));
// → "654 321,99 руб."

Usando format con map

Use the format getter function for formatting all numbers in an array. Note that the function is bound to the NumberFormat (en-US) from which it was obtained, so it can be passed directly to Array.prototype.map.

js
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"

Especificaciones

Specification
ECMAScript Internationalization API Specification
# sec-intl.numberformat.prototype.format

Compatibilidad con navegadores

BCD tables only load in the browser

See also