Answers for "pick random item from array ks"

10

Javascript get random item from array

var colors = ["red","blue","green","yellow"];
var randomColor = colors[Math.floor(Math.random()*colors.length)]; //pluck a random color
Posted by: Guest on July-26-2019
1

Pick Random Value From Array

javascriptCopyvar myArray = ['one', 'two', 'three', 'four', 'five'];
var rand = Math.floor(Math.random()*myArray.length);
var rValue = myArray[rand];
console.log(rValue)
Posted by: Guest on September-30-2021

Code answers related to "pick random item from array ks"

Code answers related to "Javascript"

Browse Popular Code Answers by Language