1.數組中已存在兩個可直接用來重新排序的方法:reverse()和sort()。
reverse()和sort()方法的傳回值是經過排序後的陣列。 reverse()方法會反轉數組項目的順序:
var values=[1,2,3,4,5]; values.reverse(); alert(values); //5,4,3,2,1
在預設情況下,sort()方法按升序排列數組,sort()方法會呼叫每個數組項目的toString()轉換方法,然後比較得到字串,決定如何排序。即使陣列中的每一項都是數值,sort()方法比較的也是字串:
var values = [0,1,5,10,15]; values.sort(); alert(values); //0,1,10,15,5
因此,sort()方法可以接收一個比較函數作為參數。
function compare(value1,value2){ if (value1 < value2){ return -1; }else if (value1 > value2){ return 1; }else{ return 0; } }
此比較函數可適用於大多數資料類型,只要將其作為參數傳遞給sort()方法即可:
var values = [0,1,3,7,9,15]; values.sort(compare); alert(values); //0,1,3,7,9,15
交換函數回傳值即可:
function compare (value1, value2){ if (value1<value2){ return 1; }else if { return -1; }else{ return 0; } }
function compare (value1,value2){ return value2 - value1; }