I have one array like this:
temp = [
'data1',
['data1_a','data1_b'],
['data2_a','data2_b','data2_c']
];
//
I want to change the array within my array using toString(), how the best to do it? Then the array like :
temp = [
'data1',
'data1_a,data1_b',
'data2_a,data2_b,data2_c
];