This is my array:
array = [:one,:two,:three]
I want to apply to_s method to all of my array elements to get array = ['one','two','three'].
How can I do this (converting each element of the enumerable to something else)?
|
This is my array:
I want to apply How can I do this (converting each element of the enumerable to something else)? |
||||
|
|
|
|||||||||||||
|
|
You can use
|
|||
|
|
|
It's worth noting that if you have an array of objects you want to pass individually into a method with a different caller, like this:
You can use the
If you're not familiar, what The caveat is that, like with |
|||
|
|
|
|||||||
|