Create a Globalize instance.
Locale string or Cldr instance of the instance.
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