I have an array:
int_array = [11,12]
I need to convert it into
str_array = [\'11\',\'12\']
I\'m new to t
the shortest option:
int_array.map!(&:to_s)