This operator is used in <conditional> expressions. Use it to check if a value is less than other.
Symbol: <
|
|
Example 1
|
|
Example 2 |
|
Example 3 |
5 < 10
Result = TRUE
|
|
10 < 5
Result = FALSE |
|
"Kalipso" < "Kalipsa"
Result = FALSE |
|
|
|
|
|
Example 4 |
|
Example 5 |
|
|
"Kalipso" < "kalipso"
Result = FALSE |
|
"Kalipso" < "kalipsa"
Result = TRUE |
|
|
Updated: 3/21/2018 4:39 PM |