Answers for "javascript array math.random"

49

javascript get random array value

//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];
Posted by: Guest on July-31-2019
-1

random array javascript

const months = ["January", "February", "March", "April", "May", "June", "July"];

const random = Math.floor(Math.random() * months.length);
console.log(random, months[random]);
Posted by: Guest on February-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language