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