25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 lines
228 B

  1. // 打乱数组
  2. function randomArray(array = []) {
  3. // 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0
  4. return array.sort(() => Math.random() - 0.5);
  5. }
  6. export default randomArray