NumberFormatter Op
Format a number to a string in the given locale and format
Summary (oneliner)
Wrapped standard Javascript function toLocaleString.
Outputs a formated representation of the input number, can work with currencies, use the browser locale or use a custom one. Numbers will be rounded to
See doc here: https://www.w3schools.com/jsref/jsref_tolocalestring_number.asp
Brower support [caniuse.com]
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
A string with a BCP 47 language tag
The formatting style to use
Format
The minimum number of integer digits to use. Possible values are from 1 to 21
The minimum number of fraction digits to use. Possible values are from 0 to 20
The maximum number of fraction digits to use. Possible values are from 0 to 20
Significant Digits
The maximum number of significant digits to use. Possible values are from 1 to 21
The minimum number of significant digits to use. Possible values are from 1 to 21
Whether to use grouping separators, such as thousands separators.
Currency
The currency to use in currency formatting. Possible values are the ISO 4217 currency codes.
How to display the currency in currency formatting
Outputs
Patches using NumberFormatter
Changelog
created op 2022-03-15 - kikohs |