码迷,mamicode.com
首页 > 编程语言 > 详细

将数组内容打乱

时间:2018-10-26 00:49:14      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:for   function   randomint   get   return   内容   isp   play   and   

// 返回min到max中的一个随机数
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min)
}
function shuffle(arr) {
for (let i = 0; i < arr.length; i++) {
let j = getRandomInt(0, i)
let t = arr[i]
arr[i] = arr[j]
arr[j] = t
}
return arr
}

将数组内容打乱

标签:for   function   randomint   get   return   内容   isp   play   and   

原文地址:https://www.cnblogs.com/victory820/p/9853638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!