Arrays and Hashes

A Newbies Guide to Development

December 7, 2015

Entering into anything new can be overwhelming and intimidating. I should know, I have chosen to enter the field of web development and I'm attending Dev Bootcamp. Dev Bootcamp (DBC) is a development bootcamp geared at taking you from newbie to a world class beginner in 18 weeks. It is going to be one of the most challenging experiences of my life. This blog series is designed to be an introduction to the world of development for the novice developer by a novice developer. By the end of this series I hope that you have had an opportunity to grow as much as I have.

What is the difference between an array and a hash?

Before we get into the differences between an array and a hash, I guess it would be beneficial to know what they are first.

Arrays

Simply put, arrays are a way to store multiple elements within Ruby. Well that's great; but what does that mean? Ok let's look at it this way. Imagine you needed to go to the grocery store. You get a pad of paper and you start writing down everything you need. It may look something like this:

  1. Milk
  2. Eggs
  3. Bread
  4. Coffee
  5. Cereal
  6. Cookies

Alright, now don't judge me based on my shopping list, let's just stay focused on the example. Anyway, you can think of the pad of paper as the array and the items of your shopping list are the elements of the array. Pretty simple right?! Arrays are just an ordered collection of objects. Now unlike our shopping list example, arrays do not start ordering with 1. In fact, arrays are sometimes referred to as zero index arrays. Which just means that the first item in our array sits in the zeroth position. So if our shopping list was actually an array it would look more like this:

  1. Milk
  2. Eggs
  3. Bread
  4. Coffee
  5. Cereal
  6. Cookies
Ok, I'm starting to get it, but how does this looking Ruby and what type of elements are arrays used for? Well those are very good questions and pretty simple to answer. First arrays can store any string, integer, or even another array as elements. When we create an array, it would look like this:

So here we have an array called my_aray with the strings "Apples", "Oranges", the integer 67, and an array of ["hello","world"].

Hashes

Hashes, are very similar to arrays in that they store multiple elements. Now arrays use a zero index to store the "position" of the value within an array. But what happens if that really doesn't work well for us, this is where hashes come into play. Although we could use our shopping list example again, let's try something different. Alright, it's the end of the month and we are putting bills together to see if we went over budget and it may look something like this:

  • Rent: $2,5000
  • Car: $279
  • Water: $300 (It is California after all)
  • Utilities: $300
  • Groceries: $1,500
So in this example our budget is the hash and the bills are our elements with the type of bill being the "key" for the dollar amount "value". That's it, again pretty simple. Now let's see how that might look in Ruby.

The great thing about hashes is that we can use a string as the "key" so you can be pretty specific with the key, which may give you more insight into the key's value. An important thing to remember with hashes is that each key has to be unique to the hash, but multiple keys can have the same value. If you were to accidentally reuse a key, the hash would store that last value that was added.

So what's the difference?

Although both arrays and hashes store multiple elements within them, the way we access them is different. In an array we access the value at a specific index. Remember, if you want to access the first element of an array you would need to use 0 not 1 similar to this:

With a hash, we access the value of elements using their keys, similar to this:

Did you notice what I did there? Yep, there are a few different ways to assign the keys and values in a hash and I just wanted to show you a different way. However, it is important to be consistent because it will change the way in which you call the value. For example, in our first example we would actually call the value like this my_hash["Car"]. Of course, the value returned would be the same but you cannot assign one way and call them another.

So why would you use one over another? In some cases I think it really comes down to personal preference because they are similar in their function. A good case for using a hash over an array may come in the example of storing user names and passwords. In this example, the user name would be the key and the password would be the value. It is a little easier than an array because if a person forgot their password it would be easy to find based on their user name being the key. If we were to use an array, you would have to try and remember at what index the user's password is stored. In fact you may even need to create a hash to store that information.

Well, I can honestly say that I went over my alloted time limit on this post, but I hope that it gives you a better understanding of arrays and hashes in Ruby.