Js中用方法sort()为数组排序。sort()方法有一个可选参数,是用来确定元素顺
//升序
arr.sort(function(a,b){
retun a-b;
});
//降序
arr.sort(function(a,b){
retun b-a;
});
以上方法可以实现对数组按数值大小排序JS中sort()函数问题
原文地址:https://www.cnblogs.com/yhliu/p/11055522.html
时间: 2024-10-11 16:43:39