EasyClick 数组随机取值
Posted Mr -老鬼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EasyClick 数组随机取值相关的知识,希望对你有一定的参考价值。
EasyClick 数组随机取值
/**
* @作者 Mr_老鬼 QQ:1156346325
* @函数用途 随机生成字符串
* @创建时间 15:37 2021-10-31
* @参数 arr 要取随机值的数组 count 随机值个数
* @return 数组随机值
**/
function getRandomArrayElements(arr, count)
let shuffled = arr.slice(0), i = arr.length, min = i - count, temp, index;
while (i-- > min)
index = Math.floor((i + 1) * Math.random());
temp = shuffled[index];
shuffled[index] = shuffled[i];
shuffled[i] = temp;
return shuffled.slice(min);
var items = ['1','2','4','5','6','7','8','9','10'];
// 例子
getRandomArrayElements(items,5);
我是Mr-老鬼、QQ1156346325 。交流QQ群:620028786,647082990,772810035
————————————————版权声明——————————————————
本文版权所有~Mr-老鬼 ~转载请注明原文地址
免责声明:本文所有的教程仅限交流学习使用不得用于违法用途,造成的法律后果本人不承担责任。
以上是关于EasyClick 数组随机取值的主要内容,如果未能解决你的问题,请参考以下文章