Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Number.IsOdd(number as number) as logical
About
Indicates if the value is odd. Returns true
if number
is an odd number, false
otherwise.
Example 1
Check if 625 is an odd number.
Usage
Number.IsOdd(625)
Output
true
Example 2
Check if 82 is an odd number.
Usage
Number.IsOdd(82)
Output
false