I have a variable A as follows:
A = [[a],[b],[c],[d],.....]
I need to make this array to comma separated values as:
A = a,b,c,d,....
What I did is as follows:
A = A.replace("[", "");
A = A.replace("]", "");
But not working!!
Getting error as A.replace is not a function