BigInt to BigInt.prototype.toLocaleString()

It returns a string representation of this BigInt object.

Example: The code creates a BigInt variable Big, converts it to a localized string, and prints it twice with different locale settings.

Javascript




let Big = 45334n;
console.log(Big.toLocaleString());
 
Big = 78753456789123456789n;
console.log(Big.toLocaleString('de-DE'));


Output

45,334
78.753.456.789.123.456.789

JavaScript Object toLocaleString() Method

The Object.prototype.toLocaleString() method returns a local specific string representation of this object using the locale of the environment. Derived objects like an array, number, date, typedarray, and BigInt can override this method.

Syntax:

object.toLocaleString()

Return Value: It returns a string representation of this object.

Objects overriding toLocaleString():

Similar Reads

1. Array to Array.prototype.toLocaleString()

It returns a string representation of this array object....

2. BigInt to BigInt.prototype.toLocaleString()

...

3. Date to Date.prototype.toLocaleString()

It returns a string representation of this BigInt object....

4. Number to Number.prototype.toLocaleString()

...

5. TypedArray to TypedArray.prototype.toLocaleString()

It returns a string representation of this date object....

Contact Us