How can you change this array:
[["1","one"], ["2","two"], ["3","three"]]
to that?
["1","one"], ["2","two"], ["3","three"]
Explanation
I apologize for the unacceptable second version. This is what I'm really going to do:
I want to add ["0","zero"]to the beginning [["1","one"], ["2","two"], ["3","three"]]to get:
[["0","zero"], ["1","one"], ["2","two"], ["3","three"]]
I tried:
["0","zero"] << [["1","one"], ["2","two"], ["3","three"]]
The above approach creates this, which contains the nested I don't want:
[["0","zero"], [["1","one"], ["2","two"], ["3","three"]]]