Answers for "print 2 random array values JS"

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

js random string from array

const randomElement = array[Math.floor(Math.random() * array.length)];
Posted by: Guest on April-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language