您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910
  1. export const shuffle = (array) => {
  2. const newArray = [...array];
  3. newArray.reverse().forEach((item, index) => {
  4. const j = Math.floor(Math.random() * (index + 1));
  5. [newArray[index], newArray[j]] = [newArray[j], newArray[index]];
  6. });
  7. return newArray;
  8. };