Answers for "js select random from list"

8

javascript math.random from list

var myArray = [
  "Apples",
  "Bananas",
  "Pears"
];

var randomItem = myArray[Math.floor(Math.random()*myArray.length)];
Posted by: Guest on April-19-2020
0

random choice js array

function choose(choices) {
  var index = Math.floor(Math.random() * choices.length);
  return choices[index];
}
Posted by: Guest on July-23-2021

Code answers related to "js select random from list"

Code answers related to "Javascript"

Browse Popular Code Answers by Language