Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 603 Bytes

constructor.md

File metadata and controls

28 lines (17 loc) · 603 Bytes

[new] Globalize( locale|cldr )

Create a Globalize instance.

Parameters

locale|cldr

Locale string or Cldr instance of the instance.

Example

Prior to creating any Globalize instance, you must load cldr/supplemental/likelySubtags.json. Read CLDR content if you need more information.

var en = new Globalize( "en" );

// You can optionally omit the `new` operator.
var pt = Globalize( "pt" );

en.formatNumber( 3.1415 );
// > 3.142

pt.formatNumber( 3.1415 );
// > 3,142