Operator Examples Flashcards
Name the operator and description
2 + 4 == 6
+: Add
2 - 4 == 2
-: Subtract
2 * 4 == 8
*: Multiply
2 ** 4 == 16
**: Power of
2 / 4.0 == 0.5
/: Divide
2 % 4 == 2
%: Modulus
4 > 4 == false
>: Greater than
“1”.to_i == 1
.: Dot access
Module::Class
::- Colon access
[1,2,3,4]
[]: List brackets
!true == false
!: Not
4 < 4 == false
<: Less than
4 > 4 == false
>: Greater than
4 >= 4 == true
<=: Greater than equal
4 <= 4 == true
>=: Less than equal
4 4 == 0
: Comparison
4 == 4 == true
==: Equal
4 === 4 === true
===: Equality
4 != 4 == false
!=: Not equal
true && false == false
&&: Logical and (higher precedence)
true || false == true
||: Logical or (higher precedence)
(0..3).to_a == [0, 1, 2, 3]
..: Range inclusive
(0…3).to_a == [0, 1, 2]
…: Range non-inclusive
$stdin
$: Global scope
@var ; @@classvar
@: Object scope
@var; @@classvar
@@: Class scope