in the default sort which is the compare function used?
alphabetical ordination is so:arry.sort();
but which is the default function used?
is there a good link wich example for alphabetical order
and also for multiarray order? (previous post)
which it is the difference between:
function compareNumbers(a, b)
{return a - b;}
and this:
function compare(a, b)
{ if (a < b by) return -1;
else if (a than b ) return 1;
else return 0;
}