I have the following array (the code is written in Java) :
String[][] a = new String[3][2];
a[0][0] = "1";
a[0][1] = "2";
a[1][0] = "1";
a[1][1] = "2";
a[2][0] = "1";
a[2][1] = "2";
and what I want to do is to print 111222 and I accomplished that in Java by doing this:
for (int i=0;i < a[i].length;i++){
for(int j=0;j <a.length;j++){
System.out.print(a[j][i]);
}
}
What is the equivalent of this in JavaScript?
