How would I combine the subarrays within this array
[["0", "0", "0"], ["0", "0", "0"], ["1"]]
I want to add a comma in between each subarrays so that it would read
000,000,1.
I have tried using *"," but it will combine the whole array together and give me 0,0,0,0,0,0,1 instead. Thanks for your help!
000,000,1is not an object. Is it"000,000,1", or["000","000","1"]or something else?