Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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 */
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #random #element #array #javascript
ADD COMMENT
Topic
Name
5+7 =