数组生成数组当你需要要生成一个0-99的数组
方案1
12const createArr = (n) => Array.from(new Array(n), (v, i) => i)const arr = createArr(1
2023-07-28