Answers for "how to generate a random whole number in javascript within array"

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
1

how to get a random item from an array javascript

Getting a random item from an array
Posted by: Guest on April-01-2022

Code answers related to "how to generate a random whole number in javascript within array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language