JS Utils Kit - v0.5.1
    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