myArray.sort(sortMethod);怎么用啊?
举个例子:
myArray.sort(function(a, b){ return a - b; });
这样的话对于数字数组就会从小到大排列。
谢谢 我明白了