Hash Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

key

A

.key(value) returns the first occurrence of that value in the hash:

{foo: 17, bar: 17, ninja: 18}.key(0)

=> :foo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

each_value { |value| block }

A

.each_value is like .each but it only iterates over the values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly