Answers for "random 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
1

javascript random element from array

const randomItem = items[Math.floor(Math.random() * items.length)];
Posted by: Guest on June-14-2021
0

get random element from array js

var item = items[Math.floor(Math.random() * items.length)];
Posted by: Guest on October-28-2020
1

js get random from array

//Make all arrays have "random" method
Array.prototype.random = function() {
    return this[Math.floor(Math.random() * this.length)];
}

//Call "random" method on an array
var result = ["Hello", "world"].random();
Posted by: Guest on March-27-2021
-1

random array javascript

const months = ["January", "February", "March", "April", "May", "June", "July"];

const random = Math.floor(Math.random() * months.length);
console.log(random, months[random]);
Posted by: Guest on February-22-2021
1

get random item from array javascript

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