摘要: 随机生成一个六位数,不足六位时用1补齐 const code = Math.floor(Math.random() * 1000000).toString().padStart(6, "1"); console.log(code) 阅读全文
posted @ 2019-06-14 12:00 小哩 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 从数组最后一个数据开始和它前面的任意索引对应的数据交换 let datalist = [1, 2, 3, 4, 5, "a", "b", "c", 6, 7, 8, 9, 12, 14, 15]; function shuffle(arr) { let m = arr.length; while(m 阅读全文
posted @ 2019-06-14 10:35 小哩 阅读(1185) 评论(0) 推荐(0) 编辑