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

get random element from array typescript

const randomElement = array[Math.floor(Math.random() * array.length)];
Posted by: Guest on April-07-2020

Code answers related to "typescript random element from array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language