Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
Arrays.sort(contests, (a, b) -> Integer.compare(b[0],a[0])); //decreasing order
Arrays.sort(contests, (a, b) -> Integer.compare(a[0],b[0]); //increasing order
Arrays.sort(myArr,(double[] a,double[] b)->{
//here multiple lines of code can be placed
return a[0]-b[0];
});
function sort_array() {
notice_board_data.sort(function (a, b) {
return Date.parse(a[0].localeCompare(b[0])) || a[1].localeCompare(b[1]);
});
}//end function