home
me
projects
resume
blog

Don't Stop Beliebin'

January 21, 2016

I have been coding for: 4 weeks

DISCLAIMER: This post is entirely about Justin Bieber. Read at your own risk.

Bieber's Mugshot

Bieber has come a long way since his 2014 arrest in Miami (pictured above). To honor his growth as a human and maturation as an artist, I’ve decided to explore the differences between arrays and hashes using some of his recent chart-topping hits. Okay that was a weird segue, how about this: For those of you saying “What Do You Mean” when you hear someone say the word array or hash, you’re going to “Love Yourself” after reading this blog and figuring it out! Alright, come along on this journey with Justin and me.

Come Hither

Array

Let’s create an array to store Justin Bieber’s newest hits. I'm going to call the array "bieber_fever" because, I have it. Normally for variables in Ruby you'll use lowercase and separate spaces with an underscore - that's just how things are done.

bieber_fever = [“Sorry”, “What Do You Mean”, “Where Are Ü Now”, “Love Yourself”]

Here I've listed out four songs in a row. Things in an array are contained in [square brackets]. To access a song in this array, I’d have to figure out which slot, or index, it’s at. The first slot is slot 0, NOT 1. Remember this. That means "Sorry" is at index 0. From there I’d have to count, 0. . .1. . .2. . .3 to find that “Love Yourself” is at index 3. I’d access this like this:

bieber_fever[3]

because we are looking for the song in slot 3 of the array, even though this is actually the 4th song listed. Arrays are pretty cut and dry - they're just a list of values. They remind me of this picture of the Biebs:

Serious Biebs

...serious, straightforward, black and white.

Hash

If I were to create a hash of Bieber’s newest hits, I could store each one in a something called a key that gives a little more information about what the song means to me. A hash is a collection of things that come in pairs. In the example below, the key is the description that comes before the arrow, and the song is the value.

bieber_fever = {
     “best to dance to" => “Sorry”,
     “largest deviation from Bieber’s normal music" => “Where Are U Now”,
     “catchiest” => "What Do You Mean”,
     “most offensive to Selena Gomez" => “Love Yourself"
}

Here, we have the same four songs listed about, but with a little more flavor added. Hashes look different from arrays in that they are stored in {curly brackets} and contain those key-value pairs we talked about earlier. Key-value pairs look like this "key => value." So, instead of counting down to find a song’s index, we can easily choose a song by using the key associated with it. To find “Love Yourself” here, I’d just have to type:

bieber_fever[“most offensive to Selena Gomez”]

No annoying counting from 0 involved! As you can see, you can store a lot more "flavor" in your hashes by assigning values to keys. A hash is more like this JB:

Crazy Biebs

...more robust, more eccentric...

Why use one over the other?

Hashes are great for things that don’t need to be ordered. Since all four of these Bieber jams are undeniable hits in my opinion, I have no interest in ranking them in any order like an array implies. With the hash, we can store all four songs with no implied order and assign keys that really describe each unique sound. However, if someone wanted to list out each Bieber tune in order of their preference, they may choose to use an array, which would read more easily and be more efficient to sort.

Bottom Line:

If you want to assign values to something other than integers, use a hash. If you have many values, it is easier to call one by its key (which is often more descriptive) than by its index (which you have to count manually). If you're good with a simple list of items and would like to easily order them, (by number, alphabetically, in reverse, etc.) use an array.

Taylor