I was told that there was a convention when you have a code to print an array, that there is a value that must come first than the other one, for example:
for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array[i].length; column++)
System.out.print("" + array[i][j]);}
Would be i
first or it needs to be j
first? I find answers like this one but they don't solve my doubt...
PS: I'm not asking just about Java, but about C#, C, C++, Javascript, etc.