random value of array js code example
Example 1: javascript get random array value
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];
Example 2: javascript how to get a random element from an array
var items = ['Yes', 'No', 'Maybe'];
var item = items[Math.floor(Math.random() * items.length)];
Example 3: js get random from array
Array.prototype.random = function() {
return this[Math.floor(Math.random() * this.length)];
}
var result = ["Hello", "world"].random();