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