Function isNumber

  • Checks if a value is of type number.

    This function is a specialized version of typeOfTest that checks if the provided value is a number.

    Parameters

    • thing: any

      The value to check.

    Returns boolean

    • Returns true if the value is a number, otherwise false.

    Example

    // Returns true
    isNumber(123);

    Example

    // Returns false
    isNumber("123");

    Example

    // Returns false
    isNumber({});

Generated using TypeDoc