JS Utils Kit
    Preparing search index...

    Function isOdd

    • Checks if a number is odd.

      Parameters

      • value: number

        The number to check

      Returns boolean

      True if the number is odd, false otherwise.

      isOdd(3); // true
      isOdd(4); // false