Answers for "choose random item from array"

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
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

get random elements from array javascript

array.sort(() => Math.random() - Math.random()).slice(0, n)
Posted by: Guest on September-10-2020
-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 item from array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language