I have a multidimension array:
var somearray = new Array(
["110", "210", "310"] ,
["020", "120", "220"] ,
["020", "120", "200"] ,
["010", "120", "230"] ,
["130", "220", "310"] ,
["103", "113", "123"] ,
...
);
And I want to sort it with priority of first column, then second column then third column. How can I do that methodologically? Thanks!