Answers for "javascript random item of array"

67

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
0

get random element from array js

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

get random elements from array javascript

array.sort(() => Math.random() - Math.random()).slice(0, n)
Posted by: Guest on September-10-2020
0

get random elements from array javascript

const arr = myArray
      .map((a) => ({sort: Math.random(), value: a}))
      .sort((a, b) => a.sort - b.sort)
      .map((a) => a.value)
Posted by: Guest on September-10-2020
-1

javascript random item of array

// Define random() method of Arrays
Array.prototype.random = function() {
	return this[Math.floor(Math.random() * this.length)];
}

console.log([1, 2, 3, 4, 5, 6].random()); // 5 for example
console.log(['apple', 'banana', 'orange'].random()); // 'orange' for example
Posted by: Guest on March-06-2022

Code answers related to "javascript random item of array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language