I've got array like this :
a = [27624,
     22,
     33,
     "ema",
     "test",
     11,
     nil]
When I do a.join(',') I get one bing string with values joined. How can I get the same effect but only for my strings to retain their type. Output should look like this :
"27624, 22, 33, 'ema', 'test', 11"
 
    