function shuffle(arr) { var i = arr.length, t, j; while (i) { j = Math.floor(Math.random() * i); i--; t = arr[i]; arr[i] = arr[j]; arr[j] = t; } }
Math.floor(Math.random()*(m-n))+n; 使用这个函数可以取得[n,m]之间的随机整数,包括n,不包括m
原文地址:https://www.cnblogs.com/jshaxclcc/p/10121497.html
时间: 2024-10-07 00:06:27