Answers for "how to choose random item in array javascript"

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

Code answers related to "how to choose random item in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language