打乱数组内数据顺序
Posted youngme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打乱数组内数据顺序相关的知识,希望对你有一定的参考价值。
从数组最后一个数据开始和它前面的任意索引对应的数据交换
let datalist = [1, 2, 3, 4, 5, "a", "b", "c", 6, 7, 8, 9, 12, 14, 15];
function shuffle(arr)
let m = arr.length;
while(m > 1)
let index = Math.floor(Math.random() * m--);//交换的索引
[arr[m], arr[index]] = [arr[index], arr[m]] //交换数据
return arr;
var data = shuffle(datalist)
console.log(data)
以上是关于打乱数组内数据顺序的主要内容,如果未能解决你的问题,请参考以下文章