Options
Menu

Interface IUInt32

deprecated, just use number and document number type in jsdoc

Hierarchy

  • Number
    • IUInt32

Index

Methods

toExponential

  • toExponential(fractionDigits?: number): string
  • Returns a string containing a number represented in exponential notation.

    Parameters

    • fractionDigits?: number optional

      Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.

    Returns string

toFixed

  • toFixed(fractionDigits?: number): string
  • Returns a string representing a number in fixed-point notation.

    Parameters

    • fractionDigits?: number optional

      Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.

    Returns string

toLocaleString

  • toLocaleString(locales?: Array<string>, options?: Intl.NumberFormatOptions): string
  • toLocaleString(locale?: string, options?: Intl.NumberFormatOptions): string
  • Parameters

    • locales?: Array<string> optional
    • options?: Intl.NumberFormatOptions optional

    Returns string

  • Parameters

    • locale?: string optional
    • options?: Intl.NumberFormatOptions optional

    Returns string

toPrecision

  • toPrecision(precision?: number): string
  • Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.

    Parameters

    • precision?: number optional

      Number of significant digits. Must be in the range 1 - 21, inclusive.

    Returns string

toString

  • toString(radix?: number): string
  • Returns a string representation of an object.

    Parameters

    • radix?: number optional

      Specifies a radix for converting numeric values to strings. This value is only used for numbers.

    Returns string

Generated using TypeDoc