Checks if a number is odd.
The number to check.
True if the number is odd, false otherwise.
isOdd(3); // trueisOdd(4); // false Copy
isOdd(3); // trueisOdd(4); // false
Checks if a number is odd.