会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
you1you
博客园
首页
新随笔
管理
2019年10月27日
获取数组的随机数
摘要: getRondom (arr, len) { var out = [] while (len) { var index = Math.floor(Math.random() * arr.length) if (out.includes(index)) { } else { arr.splice(index, 1) out = out.concat(index) len-- } } return o
阅读全文
posted @ 2019-10-27 19:00 you1you
阅读(1482)
评论(0)
推荐(0)
编辑