Ruby Hash and its methods
Hi, This is Shubham Mishra from India, this is the part of Ruby on Rails exploration journey. In this post we will discuss about the ruby's Hash and its methods available to simplify our development and make the code more smarter 😅
Ok then without wasting a time we start looking into Ruby's Hash. If you are new to the development then you can read below or if you are aware of what is hash then you can skip to next paragraph.
Hash: Similar to array the Hash is a collection of objects but in the diffrent fashion. The hash store the items in the form of a key and its value. In short see below image, how lock can be access by the key assigned to it, similar to this only hash works.
Enough theory let jump into it with some example, One important think to remember is Hash will always take unique key, It means one key cannot be considered again in the hash.
Now i think you understood how hash works, now lets jump into some of the hash methods and how can we use it in diffrent ways. But before going ahead you may have seen some hash with keys without string, that is even possible and that is known as Symbol. Have a look into it, (In most of the time I would suggest to go with symbol since in ruby, symbol are more memory efficient than string but that is a diffrent topic, lets stick to the hash only)
Ok lets move with the code only, I think reading unnecessary things is just waist of time, we can learn a more from the code. The first we will have a look on merge
Now a day we are developing filter and sorting the list on product or other pages, so its necessary to look how can we sort a hash in ruby
In above code you may have notice that a hash's value could be a hash also. Ok now we will also look into delete methods,
Now I think enough reading, I would suggest you to open your rails terminal and play with the code! 💻
Comments
Post a Comment