var arr=Array(20)://创建20个空数组 arr=arr.fill(0).map(function(item){ return item+=Math.ceil(Math.random()*100);});//先用0填充,再每项加一个1-100随机数