Ruby Methods: #tap and #then
Recently, I have learned about these two methods in Ruby and find them quite useful. In this post, we will see how to use them with examples. tap tap method helps to perform certain operations while still returning the old object. ['hello', 'world'].join(' ').tap { |message| message.upcase } # "hello world" As we can see, tap doesnβt return its result. Instead the object it was called on was returned. This is useful for logging....