摘要: JavaScript相关代码 第一种方法 let n = new Array(10);//创建一个十位数组 for(let i = 0; i < n.length; i++){ // 对数组填充随机数 n[i] = Math.round(Math.random()*99)+1; } console. 阅读全文
posted @ 2020-08-26 21:48 敲代码的阿磊 阅读(6406) 评论(0) 推荐(0) 编辑