Function isUndefined

  • Checks if a value is undefined.

    Parameters

    • value: unknown

      The value to be checked.

    Returns boolean

    A boolean indicating whether the value is undefined or not.

    Example

    const result = isUndefined(someValue);
    console.log(result); // true or false

Generated using TypeDoc