Null
- Null is a placeholder value to represent "nothingness".
Logical operators ¶
| Operator | Description |
|---|---|
! |
Not |
== |
Equal to |
!= |
Not equal to |
and |
And |
or |
Or |
Warning
- Ordered comparisons such as
>or<do not work for Null.
Example
1 2 3 4 5 | |
| Operator | Description |
|---|---|
! |
Not |
== |
Equal to |
!= |
Not equal to |
and |
And |
or |
Or |
Warning
> or < do not work for Null.Example
1 2 3 4 5 | |