js數組的幾種常見排序

### 1. JavaScript的sort()方法數組 ``` var array = [1,4,-8,-3,6,12,9,8]; function compare(val1,val2){     return val1-val2; }; array.sort(compare); document.write(array); ``` sort()方法按照升序排列數組項,會調用每一個數組項的toS
相關文章
相關標籤/搜索