Answers for "how to return random index from array in 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
1

javascript random element from array

const randomItem = items[Math.floor(Math.random() * items.length)];
Posted by: Guest on June-14-2021

Code answers related to "how to return random index from array in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language