var linha = Array(3,3);
var x, y, troca;
for (x = 0; x < 3; x++) {
for (y = 0; y < 3; y++) {
linha[x,y] = parseInt(prompt("Digite o "+[y+1]+"º número da "+[x+1]+"º coluna"));
}
}
for (x = 0; x < 3; x++) {
for (y = 0; y < 3; y++) {
if (linha[x] < linha[y]){
troca = linha[x];
linha[x] = linha[y];
linha[y] = troca;
}
}
}
for (x = 0; x < 3; x++) {
for (y = 0; y < 3; y++) {
document.write(linha[x,y]+"  ");
}
document.write("<br>");
}
Question: Which method would be simpler and more logical to sort the 9 numbers entered by the user in ascending order in this problem presented?