javaScript从数组里随机抽取10个值

Posted kelly07

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaScript从数组里随机抽取10个值相关的知识,希望对你有一定的参考价值。

function getRandomArrayElements(arr, count) {
    var 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‘,"11","12","13","14","15"];

console.log( getRandomArrayElements(items, 10) );

 

以上是关于javaScript从数组里随机抽取10个值的主要内容,如果未能解决你的问题,请参考以下文章

从数组中随机抽取一个值,(别人问我,我自己想到的一个方法)

从数组中采样一个随机子集

从数据集中随机抽取一定数量的数据

从数组中获取随机值并在 DOM 中发布

怎么用JavaScript生成一个数组,数组里有十个随机数。并且不重复。数字

php中如何在数组中随机抽取n个数据的值