对数组的元素进行重新排序是一项非常重要的技巧,但是原生 array 中并没有这项功能。
const shuffle = (arr) =>arr.sort(() =>math.random() - 0.5)。
const arr = [1,2,3,4,5]。
console.log(shuffle(arr))。
const shuffle = (arr) =>arr.sort(() =>math.random() - 0.5)。
const arr = [1,2,3,4,5]。
console.log(shuffle(arr))。