Comparison of Hashes and Arrays
Learn the differences between hashes and arrays.
We'll cover the following...
Initialization
Let’s recall how we initialized arrays and hashes.
Array: arr = []
Hash: hh = {}
Iteration
Let’s see how the iteration works in arrays and hashes. ...