Answers for "how to put random number into an array js using a function"

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

Code answers related to "how to put random number into an array js using a function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language