js数组排序和求最大值

2021/8/5 23:05:54

本文主要是介绍js数组排序和求最大值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

arr.sort()方法的使用记录

var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b) {
    return a - b; //升序
});
console.log(points); //[1, 5, 10, 25, 40, 100]

points.sort(function(a, b) {
    return b - a; //降序
});
console.log(points); //[100, 40, 25, 10, 5, 1]

console.log('数组的最大值:' + Math.max.apply(null, points));


这篇关于js数组排序和求最大值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程