mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-02-19 15:45:30 +01:00
commit
5e1d66c5b7
@ -43,17 +43,18 @@ false.class #=> FalseClass
|
|||||||
1 == 1 #=> true
|
1 == 1 #=> true
|
||||||
2 == 1 #=> false
|
2 == 1 #=> false
|
||||||
|
|
||||||
# apart from false itself, nil is the only other 'falsey' value
|
|
||||||
|
|
||||||
nil == false #=> true
|
|
||||||
0 == false #=> false
|
|
||||||
|
|
||||||
# Inequality
|
# Inequality
|
||||||
1 != 1 #=> false
|
1 != 1 #=> false
|
||||||
2 != 1 #=> true
|
2 != 1 #=> true
|
||||||
!true #=> false
|
!true #=> false
|
||||||
!false #=> true
|
!false #=> true
|
||||||
|
|
||||||
|
# apart from false itself, nil is the only other 'falsey' value
|
||||||
|
|
||||||
|
!nil #=> true
|
||||||
|
!false #=> true
|
||||||
|
!0 #=> false
|
||||||
|
|
||||||
# More comparisons
|
# More comparisons
|
||||||
1 < 10 #=> true
|
1 < 10 #=> true
|
||||||
1 > 10 #=> false
|
1 > 10 #=> false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user