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

js 数组元素排序

时间:2019-04-20 09:17:29      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:function   array   nbsp   .so   ber   col   html   mes   UNC   

 

字母排序

<html>
<body>
<script type="text/javascript">

var arr = new Array(6)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
arr[3] = "James"
arr[4] = "Adrew"
arr[5] = "Martin"

document.write(arr + "<br />")
document.write(arr.sort())

</script>
</body>
</html>

数字排序

<html>
<body>

<script type="text/javascript">

function sortNumber(a, b)
{
return a - b
}

var arr = new Array(6)
arr[0] = "10"
arr[1] = "5"
arr[2] = "40"
arr[3] = "25"
arr[4] = "1000"
arr[5] = "1"

document.write(arr + "<br />")
document.write(arr.sort(sortNumber))

</script>

</body>
</html>

 

js 数组元素排序

标签:function   array   nbsp   .so   ber   col   html   mes   UNC   

原文地址:https://www.cnblogs.com/sea-stream/p/10739725.html

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