![]()
|
|
|
|
Things you should know about nil |
|
|
|
It’s falsey in conditional statements (along with
|
|
You can check for nil using either |
|
|
|
But |
|
When you try to access a hash key that doesn’t exist,
you get |
|
(If you want it to blow up with an exception saying
there’s no such key, you must use |
|
When you access an array index that’s out of bounds,
you get |
|
Zero-value of thingsIn Go, there’s a concept called “zero-value”. |
|
|
|
In Ruby, we can get something like that with
the |
|
Filtering out the nil items |
|
Sometimes, |
|
You can get them with |
|
Note that the original array and hash are unchanged.
|
|
Use |
|
Safe-navigating the “undefined method for nil” error |
|
For an object to successfully respond to a method, it should first know about it. |
|
If you call a method that the object does not know about it, Ruby will scold you. |
|
And if that object is |
|
Use this functionality with care. In the example above,
it is okay to use |
|
Official doc |
|
Useful links |
Next topic: Boolean .