// 使用随机来打乱数组排序的方法
let arr = [1,2,3,4,5,6,7];
arr = arr.sort(function(x, y){
return Math.random() - 0.5;
});
alert(arr);
// 使用随机来打乱数组排序的方法
let arr = [1,2,3,4,5,6,7];
arr = arr.sort(function(x, y){
return Math.random() - 0.5;
});
alert(arr);
本文标题:js使用随机来打乱数组排序的方法
本文链接:https://www.haomeiwen.com/subject/ycymzxtx.html
网友评论