4.30
- js数组随机排序
function randomsort (arr) {
for (let i = 0; i < arr.length; i++) {
let index = Math.floor(Math.random() * (arr.length - i));
[arr[index], arr[arr.length - 1 - i]] = [arr[arr.length - 1 - i], arr[index]]; // 数组里的某些元素可能不会变换位置注意
}
return arr;
}
let test = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
console.log(randomsort(test));