Lines Matching refs:NumberFormat
404 ## NumberFormat section
410 Creates a **NumberFormat** object for the specified locale.
418 // Use the current system locale to create a NumberFormat object.
419 let numfmt = new intl.NumberFormat();
427 Creates a **NumberFormat** object for the specified locale.
438 …| [NumberOptions](#numberoptions) | No | Options for creating the **NumberFormat** object. …
442 …// Use locale en-GB to create a NumberFormat object. Set style to decimal and notation to scientif…
443 let numfmt = new intl.NumberFormat("en-GB", {style:'decimal', notation:"scientific"});
471 …"en-GB**, **zh"] to create a NumberFormat object. Because en-GB is a valid locale ID, it is used t…
472 let numfmt = new intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
481 Obtains the options for creating a **NumberFormat** object.
491 | [NumberOptions](#numberoptions) | Options for creating the **NumberFormat** object.|
496 let numfmt = new intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
497 // Obtain the options of the NumberFormat object.
505 Options for creating the **NumberFormat** object. Since API version 9, the **NumberOptions** attrib…