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
- toLocaleString(
locales?: LocalesArgument,
options?: BigIntToLocaleStringOptions,
): string Parameters
Optional
locales: LocalesArgumentOptional
options: BigIntToLocaleStringOptions
Returns string
Returns a string representation appropriate to the host environment's current locale.