Answers for "how to generate a random array index array js"

9

how to get a random element of an array javascript

var foodItems = ["Bannana", "Apple", "Orange"];
var theFood = foodItems[Math.floor(Math.random() * foodItems.length)];
/* Will pick a random number from the length of the array and will go to the
corosponding number in the array E.G: 0 = Bannana */
Posted by: Guest on May-30-2020
3

javascript generate random array

//This example is to generate an array with 40 random elements, with random values from 0 to 39 

for (var a=[],i=0;i<40;++i) a[i]=i;

// http://stackoverflow.com/questions/962802#962890
function shuffle(array) {
  var tmp, current, top = array.length;
  if(top) while(--top) {
    current = Math.floor(Math.random() * (top + 1));
    tmp = array[current];
    array[current] = array[top];
    array[top] = tmp;
  }
  return array;
}

a = shuffle(a);
Posted by: Guest on January-30-2020

Code answers related to "how to generate a random array index array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language