random from array 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: get random item from array javascript
const randomElement = array[Math.floor(Math.random() * array.length)];
Example 3: js get random number from array
const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
const randomMonth = months[Math.floor(Math.random() * months.length)];
console.log("random month =>", randomMonth);
Example 4: get random element from array js
var item = items[Math.floor(Math.random() * items.length)];
Example 5: js get random from array
Array.prototype.random = function() {
return this[Math.floor(Math.random() * this.length)];
}
var result = ["Hello", "world"].random();
Example 6: get random elements from array javascript
array.sort(() => Math.random() - Math.random()).slice(0, n)