Answers for "random index in array javascrip["

14

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

random index js

let myList = ["apples", "lemons", "oranges"];
let randomIdx = Math.floor(Math.random() * myList.length);
let randomItem = myList[randomIdx]
console.log(randomItem) // Ex: "lemons"
Posted by: Guest on December-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language