Contents
Display Legacy Contents

 Print
    Greater Equal      
This operator is used in <conditional> expressions. Use it to check if a value is greater than or equal to other.

Symbol: >
=

     
Example 1
  Example 2   Example 3
10 >= 5

Result = FALSE
  5 >= 5

Result = TRUE
  5 >= 10

Result = FALSE
         
Example 4   Example 5   Example 6
"Kalipso" >= "Kalipsa"

Result = TRUE
  "Kalipso" >= "Kalipso"

Result = FALSE
  "kalipso" >= "Kalipso"

Result = FALSE
         
Example 7        
"Kalipsa" >= "Kalipso"

Result = FALSE
       


See also
Samples
Sample 1
Sample 2
 
Updated: 3/25/2013 11:51 AM