如何给一个有序数组乱序

56 阅读1分钟
var arr = [1,2,3,4,5,6,7]
arr.sort(function(){\
return Math.random() - 0.5
})