The Javascript BigInt64Array toLocaleString()
method converts the typed array to String for current locale.
BigInt64Array.toLocaleString([locales [, options]]);
Parameter | Optional | Meaning |
---|---|---|
locales | Yes | Locales to use |
options | Yes | options to use |
Using toLocaleString()
var uint = new BigInt64Array([2000n, 500n, 8123n, 12n, 4212n]); let a = uint.toLocaleString(); console.log(a);/*from ww w . j ava 2 s .c o m*/ a = uint.toLocaleString('en-US'); console.log(a); a = uint.toLocaleString('ja-JP', { style: 'currency', currency: 'JPY' }); console.log(a);