Answers for "how to select a random element inside of a array in javascript"

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
0

get random elements from array javascript

const arr = myArray
      .map((a) => ({sort: Math.random(), value: a}))
      .sort((a, b) => a.sort - b.sort)
      .map((a) => a.value)
Posted by: Guest on September-10-2020

Code answers related to "how to select a random element inside of a array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language