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

js 自定义数组排序和随机数组

时间:2018-06-24 16:02:55      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:else   console   定义   div   turn   mat   array   fun   .so   

var array = [1,2,5,3]
//随机打乱数组
array.sort(function(ls, rs){
if(Math.random() < 0.5) {
return -1;

}
else {
return 1;
}

})
console.log(array);

//数组排序
var array1 = [1,2,5,3]
array1.sort(function(lhs, rhs){
if(lhs < rhs) {
return -1;
}
else {
return 1;
}

})

console.log(array1);

js 自定义数组排序和随机数组

标签:else   console   定义   div   turn   mat   array   fun   .so   

原文地址:https://www.cnblogs.com/StevenChancxy/p/9220622.html

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