<html> <head> <title>Using the sort() method on numbers and strings</title> <script type="text/javascript" language="javascript"> <!-- //
function defaultSort(elementX, elementY) { if (elementX < elementY) return -1; if (elementX > elementY) return 1; return 0; } function SortElements() { var mixture = new Array("red",4,"blue",2,"green",9);