Answers for "js get random item in 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
2

how do you make a random array in javascript

// how to generate random words from an array
const Coins = ["Heads","Tails"]
let Generate = Math.floor((Math.random() * Coins.length));

console.log(Coins[Generate]) // this will print the outcome
Posted by: Guest on August-05-2020
1

get random elements from array javascript

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language