2021年3月30日
摘要: 包含0 ,不包含10 a>=0 a<10 var a = Math.random() * 10; console.log(a) //0~9 包含1,包含10 a>=1 a<=10 var a = parseInt(Math.random() * 10 + 1); console.log(a); // 阅读全文
posted @ 2021-03-30 16:18 Steven_YF 阅读(103) 评论(0) 推荐(0) 编辑