先生成一个数组,数字里边的元素是随机生成的10以内数字let arr = Array.from({length:20},=>Math.random()*10|0);
console.log(arr);
//输出结果:
[5,4,7,0,0,
2020-04-18