Data Types Flashcards
1
Q
true
A
boolean value
2
Q
false
A
false boolean value
3
Q
nil
A
Requests “nothing” or “no value” x = nil
4
Q
strings
A
Stores textual information. x = “hello”
5
Q
numbers
A
Stores integers. I = 100
6
Q
floats
A
Stores decimals. I = 10.389
7
Q
arrays
A
Stores lists of things
j = [1,2,3,4]
8
Q
hashes
A
Stores a key=value mapping of things
e = {‘x’ => 1, ‘y’ => 2}