js給一個數組排序

//給一個數組排序 var arr [ 1, 2, 3, 4, 5]; arr.sort(function (a,b) { // return a-b; //正序 // return b-a; //降序 return a-b; })
相關文章
相關標籤/搜索