Answers for "javascript array shuffle random"

14

js shuffle array

yourArray.sort(function() { return 0.5 - Math.random() });
Posted by: Guest on April-03-2020
3

how to shuffle an array javascript

/**
 * Shuffles array in place.
 * @param {Array} a items An array containing the items.
 */
function shuffle(a) {
    var j, x, i;
    for (i = a.length - 1; i > 0; i--) {
        j = round(random() * (i + 1));
        x = a[i];
        a[i] = a[j];
        a[j] = x;
    }
    return a;
}

shuffle(array);
Posted by: Guest on September-25-2020
-1

javascript shuffle array

function shuffle(array){
    let new_arr  = [] ;     
     while (new_arr.length < array.length ){
    let random_item = array[Math.floor(Math.random()*(array.length))]; 
     if(!new_arr.includes(random_item)){new_arr.push(random_item)}
    }
return new_arr
}
Posted by: Guest on May-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language