Answers for "choose random value of an array javascript"

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

how to get random item from an array

//Function to make it easier
Array.prototype.random = function() {
    return this[Math.floor((Math.random() * this.length))];
};

var colors = ["red","blue","green","yellow"];
var randomColor = colors.random();
Posted by: Guest on February-24-2021

Code answers related to "choose random value of an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language