码迷,mamicode.com
首页 > 编程语言 > 详细

数组的升降序排列

时间:2017-12-23 20:19:17      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:turn   asc   desc   tle   .so   class   col   pre   esc   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>排列</title>
</head>
<body>
    <script type="text/javascript">
        var arr = [1,10,30,2,3,5,100,500,200];
        function ascending(i,j) {
            return i-j;
        }

        function descending(i,j){
            return j-i;
        }

        alert(arr.sort(ascending));
        alert(arr.sort(descending));
    </script>
</body>
</html>

 

数组的升降序排列

标签:turn   asc   desc   tle   .so   class   col   pre   esc   

原文地址:http://www.cnblogs.com/chenmiaosong/p/8094108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!