Jump to content

Sort using a custom comparator: Difference between revisions

Javascript
m (Changed over to works with template)
(Javascript)
Line 292:
}
}
 
=={{header|JavaScript}}==
function lengthSorter(a, b) {
var result = b.length - a.length;
if (result == 0)
result = a.localeCompare(b);
return result;
}
var test = ["Here", "are", "some", "sample", "strings", "to", "be", "sorted"];
test.sort(lengthSorter);
alert( test.join(' ') ); // strings sample sorted Here some are be to
 
=={{header|MAXScript}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.