over 8 years ago
In Ruby, we often sum up our code in the minimum number of lines. We have a method tap which helps us to perform number of operations, which are dependent on the intermediate results.
for example.
In its counterpart map returns an array of nil elements.
we can create a series of operations which can be performed by using Tap
In the above method we are able to create an array, and then extract odd numbers and then finally able to find their cubes, In a single line.
This is the power of chaining by ruby.
0 Comment(s)