首页 > 代码库 > 给数组随机打乱

给数组随机打乱


var data = http://www.mamicode.com/obj.data;//获取数组

function randomsort(a, b) {
return Math.random()>.5 ? -1 : 1;
//用Math.random()函数生成0~1之间的随机数与0.5比较,返回-1或1
}

var pieData= http://www.mamicode.com/data.proportion.sort(randomsort);//数组sort方法,返回1 换位置,返回-1不换位置

给数组随机打乱