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