We're a place where coders share, stay up-to-date and grow their careers.
Ruby
there already exists a function to_s.
to_s
If you want another one, here it is
def bool_to_s(str) (!!str).to_s end
It will work without the !! I just wanted to make sure it will work even if anything else is passed
!!
Ruby
there already exists a function
to_s
.If you want another one, here it is
It will work without the
!!
I just wanted to make sure it will work even if anything else is passed