摘要: function __random(start=0, end=1) { return Math.floor(Math.random() * (end - start + 1) + start); } console.log(__random(3,100)); function __random(st 阅读全文
posted @ 2018-11-06 23:02 aleng_liu 阅读(816) 评论(0) 推荐(0) 编辑