The number to check.
A boolean indicating whether the number is odd.
This function will throw an error if the provided value is not an integer.
Will throw an error if the input is not an integer.
isOdd(5);
//=> true
isOdd(4);
//=> false
Generated using TypeDoc
Checks if a number is odd.