神岛 API 文档 - ArenaPro版
    Preparing search index...
    interface BigInt {
        "[toStringTag]": "BigInt";
        toLocaleString(
            locales?: LocalesArgument,
            options?: BigIntToLocaleStringOptions,
        ): string;
        toLocaleString(): string;
        toString(radix?: number): string;
        toString(radix?: number): string;
        valueOf(): bigint;
        valueOf(): bigint;
    }
    Index

    Properties

    "[toStringTag]": "BigInt"

    Methods

    • Returns a string representation appropriate to the host environment's current locale.

      Parameters

      • Optionallocales: LocalesArgument
      • Optionaloptions: BigIntToLocaleStringOptions

      Returns string

    • Returns a string representation appropriate to the host environment's current locale.

      Returns string

    • Returns a string representation of an object.

      Parameters

      • Optionalradix: number

        Specifies a radix for converting numeric values to strings.

      Returns string

    • Returns a string representation of an object.

      Parameters

      • Optionalradix: number

        Specifies a radix for converting numeric values to strings.

      Returns string

    • Returns the primitive value of the specified object.

      Returns bigint

    • Returns the primitive value of the specified object.

      Returns bigint