Number.IsOdd
Indicates if the value is odd.
Syntax
Number.IsOdd(
number as number
) as logical
Remarks
Indicates if the value is odd. Returns true
if number
is an odd number, false
otherwise.
Examples
Example #1
Check if 625 is an odd number.
Number.IsOdd(625)
Result:
true
Example #2
Check if 82 is an odd number.
Number.IsOdd(82)
Result:
false
Category
Number.Information