数组办法 数组去重 export function unique(arr){return Array.from(new Set(arr)); } 生成数组 [...Array(5)].map((_,i) => {const num = Math.random() return num })