Interface BigInt
interface BigInt {
[toStringTag]: "BigInt";
toLocaleString(locales?: LocalesArgument, options?: BigIntToLocaleStringOptions): string;
toString(radix?: number): string;
valueOf(): bigint;
}
[toStringTag]: "BigInt";
toLocaleString(locales?: LocalesArgument, options?: BigIntToLocaleStringOptions): string;
toString(radix?: number): string;
valueOf(): bigint;
}
Index
Properties
Methods
Methods
toLocaleString
- to
Locale (locales?, options?): stringString Parameters
Optional
locales: LocalesArgumentOptional
options: BigIntToLocaleStringOptions
Returns string
Returns a string representation appropriate to the host environment's current locale.