哪种是在JavaScript中随机排列数组的更有效方法?
算法1:
function shuffle(a) {
var j, x, i;
for (i = a.length - 1; i > 0; i--) {
j = Math.floor(Math.random() * (i + 1));
x = a[i];
a[i] = a[j];
a[j] = x;
}
return a;
}
算法2:
function shuffle(a) {
return a.sort(() => 0.5 - Math.random());
}
请解释您的答案!