@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Variable number_parseIntConst

    number_parseInt: (string: string, radix?: number) => number = ...

    alias for Number.parseInt.

    Type declaration

      • (string: string, radix?: number): number
      • Converts A string to an integer.

        Parameters

        • string: string

          A string to convert into a number.

        • Optionalradix: number

          A value between 2 and 36 that specifies the base of the number in string. If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal. All other strings are considered decimal.

        Returns number