Answers for "ruby greater than"

1

ruby comparison operators

# More comparisons
1 < 10 #=> true
1 > 10 #=> false
2 <= 2 #=> true
2 >= 2 #=> true
Posted by: Guest on January-07-2021
2

ruby equality operators

# Equality
1 == 1 #=> true
2 == 1 #=> false

# Inequality
1 != 1 #=> false
2 != 1 #=> true
!true  #=> false
!false #=> true
Posted by: Guest on January-07-2021

Browse Popular Code Answers by Language