If I have an JavaScript array:
a = ["12", "34", "56", "78"];
and I want to make a new 2D array like this:
b = [ ["12345678"], ["34567812"], ["56781234"], ["78123456"] ];
I know this should be pretty simple but I just can't figure it out... My brain is kinda slow today... :/